[gnumeric] Typos.



commit 1eab7cc404dd2dc365dfe131c305b2359ec04ec6
Author: Morten Welinder <terra gnome org>
Date:   Wed May 6 19:56:15 2020 -0400

    Typos.

 ChangeLog                         | 2 +-
 plugins/excel/ChangeLog           | 6 +++---
 src/dialogs/dialog-define-names.c | 2 +-
 src/expr.c                        | 4 ++--
 src/sheet-object.c                | 4 ++--
 src/sheet.c                       | 2 +-
 src/wbc-gtk.c                     | 2 +-
 src/widgets/ChangeLog             | 2 +-
 tools/ChangeLog                   | 2 +-
 9 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 845d31bb5..a90ab3254 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1666,7 +1666,7 @@
 2015-01-14  Morten Welinder  <terra gnome org>
 
        * src/xml-sax-read.c (xml_sax_cell_content): When we fail to parse
-       an expresssion, make it a string instead of dropping it on the
+       an expression, make it a string instead of dropping it on the
        floor.
 
 2015-01-13  Morten Welinder  <terra gnome org>
diff --git a/plugins/excel/ChangeLog b/plugins/excel/ChangeLog
index a430e4728..746c3eded 100644
--- a/plugins/excel/ChangeLog
+++ b/plugins/excel/ChangeLog
@@ -7297,7 +7297,7 @@
        * ms-excel-read.c (ms_sheet_create_obj) : cut-n-paste-o in line creation
          support font color for text boxes.
          (excel_palette_get) : just call colour 64 black if it gets this far.
-           It only happens for shet objects and we need to do more research
+           It only happens for sheet objects and we need to do more research
            on how to handle these.
        (excel_read_DV) : fix double free
 
@@ -8898,7 +8898,7 @@
 
        * ms-chart.c (excel_chart_series_write_xml) : Use
          gnm_graph_series_add_dimension.
-       (BC_R(seriestext)) : store constant labels as expresions.
+       (BC_R(seriestext)) : store constant labels as expressions.
 
 2001-09-28  Jody Goldberg <jgoldberg home com>
 
@@ -12664,7 +12664,7 @@
        * ms-formula-read.c (make_function): Handle constant symbols.
 
        * ms-excel-read.c (ms_excel_read_cell): Insert bools as values,
-       not constant expresssions.
+       not constant expressions.
        (biff_get_text): Make a little more quiet.
        (ms_excel_read_cell): Insert strings as values, not via text.
 
diff --git a/src/dialogs/dialog-define-names.c b/src/dialogs/dialog-define-names.c
index f3221ddb5..00da63265 100644
--- a/src/dialogs/dialog-define-names.c
+++ b/src/dialogs/dialog-define-names.c
@@ -159,7 +159,7 @@ name_guru_expand_at_iter (NameGuruState *state, GtkTreeIter *iter)
  * @state:
  * @nexpr: expression to be deleted
  *
- * If the expresion that is about to be deleted is being used,
+ * If the expression that is about to be deleted is being used,
  * warn the user about it. Ask if we should proceed or not
  *
  * Returns: %TRUE if users confirms deletion, %FALSE otherwise
diff --git a/src/expr.c b/src/expr.c
index 24141f697..3df2f32e3 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -258,7 +258,7 @@ gnm_expr_new_funcall5 (GnmFunc *func,
  * @op: Unary operator
  * @e: (transfer full): #GnmExpr
  *
- * Returns: (transfer full): Unary expresssion
+ * Returns: (transfer full): Unary expression
  */
 GnmExpr const *
 gnm_expr_new_unary (GnmExprOp op, GnmExpr const *e)
@@ -283,7 +283,7 @@ gnm_expr_new_unary (GnmExprOp op, GnmExpr const *e)
  * @op: Unary operator
  * @r: (transfer full): right operand.
  *
- * Returns: (transfer full): Binary expresssion
+ * Returns: (transfer full): Binary expression
  */
 GnmExpr const *
 gnm_expr_new_binary (GnmExpr const *l, GnmExprOp op, GnmExpr const *r)
diff --git a/src/sheet-object.c b/src/sheet-object.c
index 9fa57a231..a73e41fd9 100644
--- a/src/sheet-object.c
+++ b/src/sheet-object.c
@@ -264,7 +264,7 @@ sheet_object_populate_menu_real (SheetObject *so, GPtrArray *actions)
                        { "edit-copy",          N_("_Copy"),            NULL,  0, cb_so_copy, NULL },
                };
                for (i = 0 ; i < G_N_ELEMENTS (so_actions); i++)
-                               g_ptr_array_add (actions, (gpointer) (so_actions + i));
+                       g_ptr_array_add (actions, (gpointer) (so_actions + i));
        } else {
                static SheetObjectAction const so_actions [] = {
                        { GTK_STOCK_PROPERTIES,         NULL, NULL,  0, sheet_object_get_editor, 
sheet_object_can_prop},
@@ -300,7 +300,7 @@ sheet_object_populate_menu_real (SheetObject *so, GPtrArray *actions)
 void
 sheet_object_populate_menu (SheetObject *so, GPtrArray *actions)
 {
-       g_return_if_fail  (NULL != so);
+       g_return_if_fail (NULL != so);
 
        GNM_SO_CLASS (G_OBJECT_GET_CLASS(so))->populate_menu (so, actions);
 }
diff --git a/src/sheet.c b/src/sheet.c
index cb3ae17f5..3d96a0afa 100644
--- a/src/sheet.c
+++ b/src/sheet.c
@@ -1189,7 +1189,7 @@ gnm_sheet_valid_size (int cols, int rows)
  * @cols: (inout): number of columns
  * @rows: (inout): number of rows
  *
- * This function produces a valid sheet valid that is reasonable for data
+ * This function produces a valid sheet size that is reasonable for data
  * of @cols columns by @rows rows.  If possible, this will be a size bigger
  * in both dimensions.  However, that is not always possible and when it is
  * not, the suggested will be smaller in one or both directions.
diff --git a/src/wbc-gtk.c b/src/wbc-gtk.c
index 1fae634d6..154a2b245 100644
--- a/src/wbc-gtk.c
+++ b/src/wbc-gtk.c
@@ -5300,7 +5300,7 @@ wbcg_focus_cur_scg (WBCGtk *wbcg)
  * wbcg_cur_scg:
  * @wbcg: #WBCGtk
  *
- * Returns: (transfer none): the current #ShetControlGUI.
+ * Returns: (transfer none): the current #SheetControlGUI.
  **/
 SheetControlGUI *
 wbcg_cur_scg (WBCGtk *wbcg)
diff --git a/src/widgets/ChangeLog b/src/widgets/ChangeLog
index 7b220f6e1..8200d6b98 100644
--- a/src/widgets/ChangeLog
+++ b/src/widgets/ChangeLog
@@ -2651,7 +2651,7 @@
 2002-03-21  Andreas J. Guelzow <aguelzow taliesin ca>
 
        * gnumeric-cell-renderer-expr-entry.[ch] : new cell renderer using
-         the expresion entry widget
+         the expression entry widget
        * src/widgets/gnumeric-expr-entry.[ch] : implement GtkCellEditables
          interface
        * Makefile.am : add gnumeric-cell-renderer-expr-entry.[ch]
diff --git a/tools/ChangeLog b/tools/ChangeLog
index 9f873ab8d..e7af273c7 100644
--- a/tools/ChangeLog
+++ b/tools/ChangeLog
@@ -1070,7 +1070,7 @@
 
 2002-08-20  Jukka Pekka  <jiivonen hutcs cs hut fi>
 
-       * import-GLPK: Fixed a replace assingment.
+       * import-GLPK: Fixed a replace assignment.
 
 2002-08-19  Morten Welinder  <terra diku dk>
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]