From 0e928780031dd891c26b134372cba60486c4754a Mon Sep 17 00:00:00 2001 From: Cody Tubbs Date: Thu, 2 Jan 2025 13:17:25 -0800 Subject: [PATCH] docs: add missing word to rectify sentence fragment Inserted "that" into "find go functions take" within `docs/docs/code-search/features.mdx`. --- docs/code-search/features.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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+'