From de4a7153336e4d156171d223bdc03d6cfa7c5e8a Mon Sep 17 00:00:00 2001 From: Thomas O'Donnell Date: Mon, 2 Sep 2019 17:44:20 +0200 Subject: [PATCH] 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`. --- docs/config/README.md | 4 ++-- 1 file 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 = "๐Ÿ—‘" ```