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
diff options
context:
space:
mode:
authorYoginth <me@yoginth.com>2019-05-20 17:11:44 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2019-05-20 17:11:44 +0300
commit2f6a20ce665de6a23fe2c1cc28cc6398afcb1b71 (patch)
tree8d11b78ab29992a7af02aed9dca5289aeb3d21bb /app/graphql/resolvers
parent9c1470c260032c8b3d9cd6cf759fd08a610e9a1b (diff)
Fix typos in the whole gitlab-ce project
Diffstat (limited to 'app/graphql/resolvers')
-rw-r--r--app/graphql/resolvers/issues_resolver.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/graphql/resolvers/issues_resolver.rb b/app/graphql/resolvers/issues_resolver.rb
index 1c3c24ad6dc..f7e49166ca0 100644
--- a/app/graphql/resolvers/issues_resolver.rb
+++ b/app/graphql/resolvers/issues_resolver.rb
@@ -46,7 +46,7 @@ module Resolvers
def resolve(**args)
# The project could have been loaded in batch by `BatchLoader`.
# At this point we need the `id` of the project to query for issues, so
- # make sure it's loaded and not `nil` before continueing.
+ # make sure it's loaded and not `nil` before continuing.
project.sync if project.respond_to?(:sync)
return Issue.none if project.nil?