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:
authorSean McGivern <sean@gitlab.com>2019-08-26 11:48:08 +0300
committerSean McGivern <sean@gitlab.com>2019-08-26 11:48:08 +0300
commit9723dc14d2a86bf565c9231ae8e7e18bd23630f2 (patch)
treee6547074dc26f89c555e99fcd71627c007f1a8ba
parent6ba51d692c3a6bac2ae82daac8bfd354f1f92999 (diff)
parentb89df394684a0b98a5dc17f0c2e798c410dfb96f (diff)
Merge branch 'patch-73' into 'master'
Update gitlab_schema.rb to fix typo See merge request gitlab-org/gitlab-ce!32200
-rw-r--r--app/graphql/gitlab_schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/graphql/gitlab_schema.rb b/app/graphql/gitlab_schema.rb
index 7edd14e48f7..4c8612c8f2e 100644
--- a/app/graphql/gitlab_schema.rb
+++ b/app/graphql/gitlab_schema.rb
@@ -49,7 +49,7 @@ class GitlabSchema < GraphQL::Schema
def id_from_object(object)
unless object.respond_to?(:to_global_id)
# This is an error in our schema and needs to be solved. So raise a
- # more meaningfull error message
+ # more meaningful error message
raise "#{object} does not implement `to_global_id`. "\
"Include `GlobalID::Identification` into `#{object.class}"
end