diff --git a/README.md b/README.md index d7b55a3b..a6ceb093 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Minimalist Go package aimed at creating Console User Interfaces. * Global and view-level keybindings. * Mouse support. * Colored text. -* Customizable edition mode. +* Customizable editing mode. * Easy to build reusable widgets, complex layouts... ## Installation diff --git a/doc.go b/doc.go index fe128afb..74143bd8 100644 --- a/doc.go +++ b/doc.go @@ -84,7 +84,7 @@ use *Gui.Update(). For example: return nil }) -By default, gocui provides a basic edition mode. This mode can be extended +By default, gocui provides a basic editing mode. This mode can be extended and customized creating a new Editor and assigning it to *View.Editor: type Editor interface { diff --git a/view.go b/view.go index 42082f8c..ccadb6e0 100644 --- a/view.go +++ b/view.go @@ -41,7 +41,7 @@ type View struct { // buffer at the cursor position. Editable bool - // Editor allows to define the editor that manages the edition mode, + // Editor allows to define the editor that manages the editing mode, // including keybindings or cursor behaviour. DefaultEditor is used by // default. Editor Editor