From f8de6b7da8d96782387702d3282bd8f2701a468b Mon Sep 17 00:00:00 2001 From: Cody Tubbs Date: Tue, 14 Jan 2025 02:14:45 -0800 Subject: [PATCH] docs: add missing word to rectify sentence fragment (#883) Inserted "that" into "find go functions take" within `docs/docs/code-search/features.mdx`. ## Pull Request approval You will need to get your PR approved by at least one member of the Sourcegraph team. For reviews of docs formatting, styles, and component usage, please tag the docs team via the #docs Slack channel. --- 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+'