mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 09:40:22 -07:00
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] - 6f02d05671 (commitcomment-42625778)
This commit is contained in:
parent
f511849c81
commit
def993bad1
@ -1275,7 +1275,7 @@ Bug fixes:
|
|||||||
=====
|
=====
|
||||||
Feature enhancements:
|
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
|
TypeScript
|
||||||
* [FEATURE #20](https://github.com/BurntSushi/ripgrep/issues/20):
|
* [FEATURE #20](https://github.com/BurntSushi/ripgrep/issues/20):
|
||||||
Adds a --no-filename flag.
|
Adds a --no-filename flag.
|
||||||
|
@ -92,7 +92,7 @@ assets = [
|
|||||||
["README.md", "usr/share/doc/ripgrep/README", "644"],
|
["README.md", "usr/share/doc/ripgrep/README", "644"],
|
||||||
["FAQ.md", "usr/share/doc/ripgrep/FAQ", "644"],
|
["FAQ.md", "usr/share/doc/ripgrep/FAQ", "644"],
|
||||||
# The man page is automatically generated by ripgrep's build process, so
|
# 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
|
# create a deployment/deb directory and copy the man page to it, or use the
|
||||||
# 'ci/build-deb' script.
|
# 'ci/build-deb' script.
|
||||||
["deployment/deb/rg.1", "usr/share/man/man1/rg.1", "644"],
|
["deployment/deb/rg.1", "usr/share/man/man1/rg.1", "644"],
|
||||||
|
2
FAQ.md
2
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
|
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
|
ideological activism by promoting the Unlicense's goal: to disclaim
|
||||||
copyright monopoly interest.
|
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
|
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
|
is also offered under the MIT license, which is ubiquitous and accepted by
|
||||||
almost everyone.
|
almost everyone.
|
||||||
|
2
GUIDE.md
2
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
|
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 correspond to well known public formats. But you can define your own
|
||||||
types as well. For example, perhaps you frequently search "web" files, which
|
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
|
$ rg --type-add 'web:*.html' --type-add 'web:*.css' --type-add 'web:*.js' -tweb title
|
||||||
|
@ -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
|
whereas there are many bugs related to that functionality in other code
|
||||||
search tools claiming to provide the same functionality.
|
search tools claiming to provide the same functionality.
|
||||||
* ripgrep can search specific types of files. For example, `rg -tpy foo`
|
* 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
|
files from your search. ripgrep can be taught about new file types with
|
||||||
custom matching rules.
|
custom matching rules.
|
||||||
* ripgrep supports many features found in `grep`, such as showing the context
|
* ripgrep supports many features found in `grep`, such as showing the context
|
||||||
|
@ -894,7 +894,7 @@ class Result(object):
|
|||||||
'''
|
'''
|
||||||
Create a new set of results, initially empty.
|
Create a new set of results, initially empty.
|
||||||
|
|
||||||
:param Benchmarl benchmark:
|
:param Benchmark benchmark:
|
||||||
The benchmark that produced these results.
|
The benchmark that produced these results.
|
||||||
'''
|
'''
|
||||||
self.benchmark = benchmark
|
self.benchmark = benchmark
|
||||||
|
Loading…
x
Reference in New Issue
Block a user