diff --git a/docs/code-search/features.mdx b/docs/code-search/features.mdx index 70b211ad0..69a311dc0 100644 --- a/docs/code-search/features.mdx +++ b/docs/code-search/features.mdx @@ -65,7 +65,7 @@ The Sourcegraph search language supports [RE2](https://golang.org/s/re2syntax) s - It's well-supported in Go, allowing us to take advantage of a rich ecosystem (notably including [Zoekt](https://github.com/sourcegraph/zoekt)) - Our API and tooling makes it straightforward to use Sourcegraph with other tools that provide facilities not built in to the search language. -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. +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. ```shell re2_regex='func \w+\(\w+ \*\w+\) \w+'