summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-07-01 17:30:21 +0000
committerStan Hu <stanhu@gmail.com>2019-07-01 17:30:21 +0000
commit9f38e22d68a327aea22b2f172db7d3fb70ba9ed2 (patch)
treef8e2388a68b5223e5c69f2cb193f706711a153c7
parent402255c290e4bb96386bc1ff3fd8c4f10669f6b2 (diff)
parent7d797b104f945fd96b560d366e69c9b3bdf55692 (diff)
downloadgitlab-ce-9f38e22d68a327aea22b2f172db7d3fb70ba9ed2.tar.gz
Merge branch 'docs-fix-typo-in-docs' into 'master'
Fix a typo in lib/gitlab/search/found_blob.rb See merge request gitlab-org/gitlab-ce!30219
-rw-r--r--lib/gitlab/search/found_blob.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/search/found_blob.rb b/lib/gitlab/search/found_blob.rb
index cfbe7f59a83..fa09ecbdf30 100644
--- a/lib/gitlab/search/found_blob.rb
+++ b/lib/gitlab/search/found_blob.rb
@@ -28,7 +28,7 @@ module Gitlab
@binary_data = opts.fetch(:data, nil)
@per_page = opts.fetch(:per_page, 20)
@project = opts.fetch(:project, nil)
- # Some caller (e.g. Elasticsearch) does not have project object,
+ # Some callers (e.g. Elasticsearch) do not have the Project object,
# yet they can trigger many calls in one go,
# causing duplicated queries.
# Allow those to just pass project_id instead.