Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change edition mode to editing mode in documentation #28

Merged
merged 1 commit into from
Jul 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change edition mode to editing mode in documentation
  • Loading branch information
ibnesayeed committed Jul 2, 2019
commit 3b583fb03ef187c73c35767ce2bc4fcfe014fc37
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion view.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down