diff --git a/doc/guile-hackers.txt b/doc/guile-hackers.txt index e5397da6cc..d7593822be 100644 --- a/doc/guile-hackers.txt +++ b/doc/guile-hackers.txt @@ -33,7 +33,7 @@ either end. Guile supports a superset of R4RS (the Scheme standard). For initial experimentation, you can use Guile as an interactive Scheme shell to play around with the system. -SLIB is a a library for Scheme implementations (including guile) +SLIB is a library for Scheme implementations (including guile) that implements a large collection of useful data structures and algorithms. diff --git a/gnucash/gnome/gnc-budget-view.c b/gnucash/gnome/gnc-budget-view.c index 4059775e56..cf6f35749f 100644 --- a/gnucash/gnome/gnc-budget-view.c +++ b/gnucash/gnome/gnc-budget-view.c @@ -424,7 +424,7 @@ gbv_create_widget(GncBudgetView *view) // Totals scroll window priv->totals_scroll_window = gtk_scrolled_window_new(NULL, NULL); gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(priv->totals_scroll_window), - GTK_POLICY_AUTOMATIC, GTK_POLICY_NEVER); // horzontal/vertical + GTK_POLICY_AUTOMATIC, GTK_POLICY_NEVER); // horizontal/vertical h_adj = gtk_scrolled_window_get_hadjustment(GTK_SCROLLED_WINDOW(priv->totals_scroll_window)); g_signal_connect(G_OBJECT(h_adj), "value-changed", diff --git a/gnucash/report/business-reports/receipt.scm b/gnucash/report/business-reports/receipt.scm index 2af29f7446..7aea7661c0 100644 --- a/gnucash/report/business-reports/receipt.scm +++ b/gnucash/report/business-reports/receipt.scm @@ -256,7 +256,7 @@ 'name (N_ "Receipt") 'report-guid "7eb3df21073d4c33920a0257da15fba5" 'menu-name (N_ "Receipt") - 'menu-tip (N_ "Display a customer invoice as receipt, cash vousher") + 'menu-tip (N_ "Display a customer invoice as receipt, cash voucher") 'menu-path (list gnc:menuname-business-reports) 'options-generator options-generator 'renderer report-renderer) diff --git a/gnucash/report/jqplot/jquery.jqplot.js b/gnucash/report/jqplot/jquery.jqplot.js index 30e776bc9a..f88459c0ac 100644 --- a/gnucash/report/jqplot/jquery.jqplot.js +++ b/gnucash/report/jqplot/jquery.jqplot.js @@ -1221,7 +1221,7 @@ // Alpha channel transparency of shadow. 0 = transparent. this.shadowAlpha = '0.1'; // prop: breakOnNull - // Wether line segments should be be broken at null value. + // Wether line segments should be broken at null value. // False will join point on either side of line. this.breakOnNull = false; // prop: markerRenderer diff --git a/gnucash/report/jqplot/plugins/jqplot.barRenderer.js b/gnucash/report/jqplot/plugins/jqplot.barRenderer.js index 9001178001..aa3b7586b8 100644 --- a/gnucash/report/jqplot/plugins/jqplot.barRenderer.js +++ b/gnucash/report/jqplot/plugins/jqplot.barRenderer.js @@ -116,7 +116,7 @@ ////// // This is probably wrong here. // After going back and forth on wether renderer should be the thing - // or extend the thing, it seems that it it best if it is a property + // or extend the thing, it seems that it is best if it is a property // on the thing. This should be something that is commonized // among series renderers in the future. ////// diff --git a/gnucash/report/jqplot/plugins/jqplot.bubbleRenderer.js b/gnucash/report/jqplot/plugins/jqplot.bubbleRenderer.js index 1a7e51712a..f483768b99 100644 --- a/gnucash/report/jqplot/plugins/jqplot.bubbleRenderer.js +++ b/gnucash/report/jqplot/plugins/jqplot.bubbleRenderer.js @@ -100,7 +100,7 @@ // Multiplier the bubble size if autoscaleBubbles is true. this.autoscaleMultiplier = 1.0; // prop: autoscalePointsFactor - // Factor which decreases bubble size based on how many bubbles on on the chart. + // Factor which decreases bubble size based on how many bubbles are on the chart. // 0 means no adjustment for number of bubbles. Negative values will decrease // size of bubbles as more bubbles are added. Values between 0 and -0.2 // should work well. diff --git a/gnucash/report/report-system/eguile-utilities.scm b/gnucash/report/report-system/eguile-utilities.scm index 5d6a9fd6f1..25a91d8603 100644 --- a/gnucash/report/report-system/eguile-utilities.scm +++ b/gnucash/report/report-system/eguile-utilities.scm @@ -88,7 +88,7 @@ ; explicit lambda and has the list expression all the way at the end). (define-syntax for (syntax-rules (for in => do hash) - ; Multiple variables and and equal number of lists (in + ; Multiple variables and equal number of lists (in ; parenthesis). e.g.: ; ; (for (a b) in (lsta lstb) do (display (+ a b))) diff --git a/gnucash/report/standard-reports/budget-barchart.scm b/gnucash/report/standard-reports/budget-barchart.scm index 4bb7ed41ab..acb14dfc9d 100644 --- a/gnucash/report/standard-reports/budget-barchart.scm +++ b/gnucash/report/standard-reports/budget-barchart.scm @@ -132,9 +132,9 @@ ;; For each period in the budget: ;; Retrieve the budgeted running sum and actual running sum -;; for bac chart. +;; for bar chart. ;; -;; Create bar and and values +;; Create bar and values ;; (define (gnc:chart-create-budget-actual budget acct running-sum chart-type width height report-start-time report-end-time) (let* ( diff --git a/gnucash/report/standard-reports/budget.scm b/gnucash/report/standard-reports/budget.scm index fb1d9696c5..66a6d8780b 100644 --- a/gnucash/report/standard-reports/budget.scm +++ b/gnucash/report/standard-reports/budget.scm @@ -136,7 +136,7 @@ (list->vector (list 'manual (N_ "Manual period selection") - (N_ "Explicitly select period valud with spinner below"))))) + (N_ "Explicitly select period value with spinner below"))))) (ui-use-periods #f) (ui-start-period-type 'current) (ui-end-period-type 'next) diff --git a/libgnucash/app-utils/calculation/fin.c b/libgnucash/app-utils/calculation/fin.c index a651a24944..37bb1853b3 100644 --- a/libgnucash/app-utils/calculation/fin.c +++ b/libgnucash/app-utils/calculation/fin.c @@ -653,7 +653,7 @@ * * For those cases where a yearly summary only is desired, it is not * necessary to compute each transaction for each payment period, - * rather the PV may be be computed for the beginning of each year, + * rather the PV may be computed for the beginning of each year, * PV[yr], and the FV computed for the end of the year, FV[yr]. The * interest paid during the year is the computed as: * diff --git a/libgnucash/app-utils/guile-util.h b/libgnucash/app-utils/guile-util.h index f95d38e887..1624349ca5 100644 --- a/libgnucash/app-utils/guile-util.h +++ b/libgnucash/app-utils/guile-util.h @@ -84,7 +84,7 @@ char * gnc_get_credit_string(GNCAccountType account_type); typedef struct _Process Process; /** Wraps g_spawn_async_with_pipes minimally. Use gnc_process_get_fd to access - * the file descriptors to the child. To close them them and free the memory + * the file descriptors to the child. To close them and free the memory * allocated for the process once it has exited, call gnc_detach_process. * * @param argl A list of null-terminated strings used as arguments for spawning,