From 8d6bfae2116ab112430201991ad210dc7207cb87 Mon Sep 17 00:00:00 2001 From: Dolev Hadar Date: Sat, 7 Sep 2024 15:38:03 +0300 Subject: [PATCH] docs: spelling mistakes in readme --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 373de2d2..cd104a4b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## ✨ Features -- 🌅 fully configurable - define sections using github filters +- 🌅 fully configurable - define sections using GitHub filters - 🔍 search for both prs and issues - 📝 customize columns with `hidden`, `width` and `grow` props - ⚡️ act on prs and issues with checkout, comment, open, merge, diff, etc... @@ -22,7 +22,7 @@ 1. Install the `gh` CLI - see the [installation](https://github.com/cli/cli#installation) - _Installation requires a minimum version (2.0.0) of the the GitHub CLI that supports extensions._ + _Installation requires a minimum version (2.0.0) of the GitHub CLI that supports extensions._ 2. Install this extension: @@ -103,7 +103,7 @@ Flags: A section is defined by a: - title - shown in the TUI -- filters - how the repo's PRs should be filtered - these are plain [github filters](https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests) +- filters - how the repo's PRs should be filtered - these are plain [GitHub filters](https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests) All configuration is provided within a `config.yml` file under the extension's directory (either `$XDG_CONFIG_HOME/gh-dash` or `~/.config/gh-dash/` or your OS config dir) or `$GH_DASH_CONFIG`. @@ -143,9 +143,9 @@ defaults: preview: open: true # whether to have the preview pane open by default width: 60 # width in columns - refetchIntervalMinutes: 30 # will refetch all sections every 30 minutes + refetchIntervalMinutes: 30 # will re-fetch all sections every 30 minutes repoPaths: # configure where to locate repos when checking out PRs - :owner/:repo: ~/src/github.com/:owner/:repo # template if you always clone github repos in a consistent location + :owner/:repo: ~/src/github.com/:owner/:repo # template if you always clone GitHub repos in a consistent location dlvhdr/*: ~/code/repos/dlvhdr/* # will match dlvhdr/repo-name to ~/code/repos/dlvhdr/repo-name dlvhdr/gh-dash: ~/code/gh-dash # will not match wildcard and map to specified path keybindings: # optional, define custom keybindings - see more info below @@ -249,7 +249,7 @@ An `:owner/:repo` template can be specified as a generic fallback. ```yaml repoPaths: - :owner/:repo: ~/src/github.com/:owner/:repo # template if you always clone github repos in a consistent location + :owner/:repo: ~/src/github.com/:owner/:repo # template if you always clone GitHub repos in a consistent location dlvhdr/*: ~/code/repos/dlvhdr/* # will match dlvhdr/repo-name to ~/code/repos/dlvhdr/repo-name dlvhdr/gh-dash: ~/code/gh-dash # will not match wildcard and map to specified path ```