diff libgui/src/m-editor/file-editor-tab.cc @ 27956:2310164737b3 stable

fix many spelling errors (bug #57613)
author John W. Eaton <jwe@octave.org>
date Fri, 17 Jan 2020 13:15:27 -0600
parents e92bab9a7f26
children c20b7290c778 44a019d01aa5
line wrap: on
line diff
--- a/libgui/src/m-editor/file-editor-tab.cc	Fri Oct 18 17:24:37 2019 -0700
+++ b/libgui/src/m-editor/file-editor-tab.cc	Fri Jan 17 13:15:27 2020 -0600
@@ -658,7 +658,7 @@
 
         if (_is_octave_file)
           {
-            // Keywords and Builtins do not change, these informations can be
+            // Keywords and Builtins do not change, this information can be
             // stored in prepared form in a file. Information on function are
             // changing frequently, then if functions should also be auto-
             // completed, the date of any existing file is checked.
@@ -666,7 +666,7 @@
             // Keywords are always used
             _prep_apis_file = prep_apis_path + lexer->lexer () + "_k";
 
-            // Buitlins are only used if the user settings say so
+            // Builtins are only used if the user settings say so
             if (octave_builtins)
               _prep_apis_file += 'b';
 
@@ -3001,7 +3001,7 @@
         int col_space = col;
         int indentation = _edit_area->indentation (line);
 
-        // Search the first occurence of space or tab backwards starting from
+        // Search the first occurrence of space or tab backwards starting from
         // the current column (col_space).
         while (c != ' ' && c != '\t' && col_space > indentation)
           {