Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2019-07-01 11:43:06 +0300
committerRémy Coutable <remy@rymai.me>2019-07-01 11:43:06 +0300
commit7d797b104f945fd96b560d366e69c9b3bdf55692 (patch)
tree66361d4c43a9453bca98463debd0d10fe3799d5f /lib
parent8775e4a1faf13a01451e71ea9ef729dc52e6d3c1 (diff)
Fix a typo in lib/gitlab/search/found_blob.rb
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'lib')
-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.