Update gitlab_schema.rb to fix typo

This commit is contained in:
Lucy Fox 2019-08-26 08:48:06 +00:00 committed by Sean McGivern
parent 6ba51d692c
commit b89df39468
1 changed files with 1 additions and 1 deletions

View File

@ -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