From def993bad1a9275cdc249f04048e5b2065b79f05 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Tue, 22 Sep 2020 10:29:16 -0400 Subject: [PATCH] spelling: fix various misspellings These were found by the check spelling action[1] and reported here[2]. PR #1685 [1] - https://github.com/marketplace/actions/check-spelling [2] - https://github.com/jsoref/ripgrep/commit/6f02d056716a116b643da1de4b53c6f15118fc38#commitcomment-42625778 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- FAQ.md | 2 +- GUIDE.md | 2 +- README.md | 2 +- benchsuite/benchsuite | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e7abbcd..8d41ef21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1275,7 +1275,7 @@ Bug fixes: ===== Feature enhancements: -* Added or improved file type filtering for VB, R, F#, Swift, Nim, Javascript, +* Added or improved file type filtering for VB, R, F#, Swift, Nim, JavaScript, TypeScript * [FEATURE #20](https://github.com/BurntSushi/ripgrep/issues/20): Adds a --no-filename flag. diff --git a/Cargo.toml b/Cargo.toml index a4c216a7..5d6c83b1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ assets = [ ["README.md", "usr/share/doc/ripgrep/README", "644"], ["FAQ.md", "usr/share/doc/ripgrep/FAQ", "644"], # The man page is automatically generated by ripgrep's build process, so - # this file isn't actually commited. Instead, to create a dpkg, either + # this file isn't actually committed. Instead, to create a dpkg, either # create a deployment/deb directory and copy the man page to it, or use the # 'ci/build-deb' script. ["deployment/deb/rg.1", "usr/share/man/man1/rg.1", "644"], diff --git a/FAQ.md b/FAQ.md index c52f6886..1bacc1e1 100644 --- a/FAQ.md +++ b/FAQ.md @@ -892,7 +892,7 @@ The reason why ripgrep is dual licensed this way is two-fold: 1. I, as ripgrep's author, would like to participate in a small bit of ideological activism by promoting the Unlicense's goal: to disclaim copyright monopoly interest. -2. I, as ripgrep's author, would like as many people to use rigprep as +2. I, as ripgrep's author, would like as many people to use ripgrep as possible. Since the Unlicense is not a proven or well known license, ripgrep is also offered under the MIT license, which is ubiquitous and accepted by almost everyone. diff --git a/GUIDE.md b/GUIDE.md index 3e3bd583..7ff81f99 100644 --- a/GUIDE.md +++ b/GUIDE.md @@ -377,7 +377,7 @@ make: *.mak, *.mk, GNUmakefile, Gnumakefile, Makefile, gnumakefile, makefile By default, ripgrep comes with a bunch of pre-defined types. Generally, these types correspond to well known public formats. But you can define your own types as well. For example, perhaps you frequently search "web" files, which -consist of Javascript, HTML and CSS: +consist of JavaScript, HTML and CSS: ``` $ rg --type-add 'web:*.html' --type-add 'web:*.css' --type-add 'web:*.js' -tweb title diff --git a/README.md b/README.md index b13e27ed..7bffc506 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ times are unaffected by the presence or absence of `-n`. whereas there are many bugs related to that functionality in other code search tools claiming to provide the same functionality. * ripgrep can search specific types of files. For example, `rg -tpy foo` - limits your search to Python files and `rg -Tjs foo` excludes Javascript + limits your search to Python files and `rg -Tjs foo` excludes JavaScript files from your search. ripgrep can be taught about new file types with custom matching rules. * ripgrep supports many features found in `grep`, such as showing the context diff --git a/benchsuite/benchsuite b/benchsuite/benchsuite index e2587fcc..b849b454 100755 --- a/benchsuite/benchsuite +++ b/benchsuite/benchsuite @@ -894,7 +894,7 @@ class Result(object): ''' Create a new set of results, initially empty. - :param Benchmarl benchmark: + :param Benchmark benchmark: The benchmark that produced these results. ''' self.benchmark = benchmark