summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorThomas O'Donnell <andytom@users.noreply.github.com>2019-09-02 17:44:20 +0200
committerMatan Kushner <hello@matchai.me>2019-09-02 11:44:20 -0400
commitde4a7153336e4d156171d223bdc03d6cfa7c5e8a (patch)
treecd726d5f26d00040fb3266b5f8c8af5cbe0e65be /docs
parentba225a65817f1f4b017c7612d5bc4e9dd7e28f2e (diff)
docs: "staged" git config option in docs (#271)
Have corrected the documentation for the git module. The docs now use the correct option `staged` rather than `added`.
Diffstat (limited to 'docs')
-rw-r--r--docs/config/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/config/README.md b/docs/config/README.md
index 878b80399..a91738d4a 100644
--- a/docs/config/README.md
+++ b/docs/config/README.md
@@ -241,7 +241,7 @@ current directory.
| `untracked` | `"?"` | There are untracked files in the working directory. |
| `stashed` | `"$"` | A stash exists for the local repository. |
| `modified` | `"!"` | There are file modifications in the working directory. |
-| `added` | `"+"` | A new file has been added to the staging area. |
+| `staged` | `"+"` | A new file has been added to the staging area. |
| `renamed` | `"ยป"` | A renamed file has been added to the staging area. |
| `deleted` | `"โœ˜"` | A file's deletion has been added to the staging area. |
| `disabled` | `false` | Disables the `git_status` module. |
@@ -259,7 +259,7 @@ diverged = "๐Ÿ˜ต"
untracked = "๐Ÿคทโ€"
stashed = "๐Ÿ“ฆ"
modified = "๐Ÿ“"
-added = "โž•"
+staged = "โž•"
renamed = "๐Ÿ‘…"
deleted = "๐Ÿ—‘"
```