Skip to content

Commit 0e92878

Browse files
authored
docs: add missing word to rectify sentence fragment
Inserted "that" into "find go functions take" within `docs/docs/code-search/features.mdx`.
1 parent 35b7f12 commit 0e92878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code-search/features.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The Sourcegraph search language supports [RE2](https://golang.org/s/re2syntax) s
6565
- It's well-supported in Go, allowing us to take advantage of a rich ecosystem (notably including [Zoekt](https://github.com/sourcegraph/zoekt))
6666
- Our API and tooling makes it straightforward to use Sourcegraph with other tools that provide facilities not built in to the search language.
6767

68-
As an example of how you can use Sourcegraph tooling with other tools, we can use `jq` (which supports Perl regexes) along with `src` to post-filter search results. In this case, we want to use backreferences to find go functions take a single pointer argument and return a non-pointer of the same type as the input.
68+
As an example of how you can use Sourcegraph tooling with other tools, we can use `jq` (which supports Perl regexes) along with `src` to post-filter search results. In this case, we want to use backreferences to find go functions that take a single pointer argument and return a non-pointer of the same type as the input.
6969

7070
```shell
7171
re2_regex='func \w+\(\w+ \*\w+\) \w+'

0 commit comments

Comments
 (0)