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-06-28 16:37:43 +0300
committerRémy Coutable <remy@rymai.me>2019-06-28 16:37:43 +0300
commit7b27e067cad968e34a5a896feb0bef4c978e66a0 (patch)
treed873094f5226d204ecafd86d72726c5dc8c7d030 /lib
parent94b710e6ef829bbf42a906394b39e9e46770207d (diff)
parent7d76128de945c565e64f9e578be7543be0968e45 (diff)
Merge branch 'small-s-in-elasticsearch-in-code' into 'master'
Fix typo in code comments about Elasticsearch See merge request gitlab-org/gitlab-ce!30163
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 01ce90c85f7..cfbe7f59a83 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 does not have project object (e.g. elastic search),
+ # Some caller (e.g. Elasticsearch) does not have project object,
# yet they can trigger many calls in one go,
# causing duplicated queries.
# Allow those to just pass project_id instead.