Skip to content

Commit b7551b5

Browse files
authored
Merge pull request rmosolgo#4980 from ydah/fix-typos
Fix some typos
2 parents 41710d6 + fb9b93c commit b7551b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+76
-76
lines changed

CHANGELOG-pro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@
806806

807807
### Bug Fix
808808

809-
- Pundit integration: use overriden `pundit_policy_class` for scoping and mutation authorization
809+
- Pundit integration: use overridden `pundit_policy_class` for scoping and mutation authorization
810810

811811
## 1.9.11 (20 Feb 2019)
812812

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@
324324
### Bug fixes
325325

326326
- Fix merging results after calling directives #4639 #4660
327-
- Visibility: don't reveal implementors of hidden abstract types #4589
327+
- Visibility: don't reveal implementers of hidden abstract types #4589
328328
- Bump required Ruby version to 2.7 since numbered block arguments are used #4659
329329
- `hash_key:`: use the configured hash key when the underlying Hash has a default value Proc #4656
330330

@@ -1583,7 +1583,7 @@ FieldExtension: pass extended values instead of originals to `after_resolve` #31
15831583
15841584
### New features
15851585
1586-
- Add options to `implements(...)` and inteface type visibility #2791
1586+
- Add options to `implements(...)` and interface type visibility #2791
15871587
- Add `Query#fingerprint` for logging #2859
15881588
- Add `--playground` option to install generator #2839
15891589
- Support lazy-loaded objects from input object `loads:` #2834
@@ -1758,7 +1758,7 @@ FieldExtension: pass extended values instead of originals to `after_resolve` #31
17581758

17591759
### Breaking changes
17601760

1761-
- `GraphQL::Schema::Resolver#initialize` accepts a new keyword argument, `field:`. If you have overriden this method, you'll have to add that keyword to your argument list (and pass it along to `super`.) #2605
1761+
- `GraphQL::Schema::Resolver#initialize` accepts a new keyword argument, `field:`. If you have overridden this method, you'll have to add that keyword to your argument list (and pass it along to `super`.) #2605
17621762
17631763
### Deprecations
17641764
@@ -2158,7 +2158,7 @@ FieldExtension: pass extended values instead of originals to `after_resolve` #31
21582158
### Bug fixes
21592159
21602160
- Argument default values include nested default values #1728
2161-
- Clean up duplciate method defs #1739
2161+
- Clean up duplicate method defs #1739
21622162
21632163
### New features
21642164
@@ -2682,7 +2682,7 @@ FieldExtension: pass extended values instead of originals to `after_resolve` #31
26822682
- `GraphQL::Argument.define` builds re-usable arguments #948
26832683
- `GraphQL::Subscriptions` provides hooks for subscription platforms #672
26842684
- `GraphQL::Subscriptions::ActionCableSubscriptions` implements subscriptions over ActionCable #672
2685-
- More runtime values are accessble from a `ctx` object #923 :
2685+
- More runtime values are accessible from a `ctx` object #923 :
26862686
- `ctx.parent` returns the `ctx` from the parent field
26872687
- `ctx.object` returns the current `obj` for that field
26882688
- `ctx.value` returns the resolved GraphQL value for that field
@@ -3201,7 +3201,7 @@ FieldExtension: pass extended values instead of originals to `after_resolve` #31
32013201
32023202
- Absent variables aren't present in `args` #479
32033203
- Fix grouped ActiveRecord relation with `last` only #476
3204-
- `Schema#default_mask` & query `only:`/`except:` are combined, not overriden #485
3204+
- `Schema#default_mask` & query `only:`/`except:` are combined, not overridden #485
32053205
- Root types can be hidden with dynamic filters #480
32063206

32073207
## 1.4.0 (8 Jan 2017)
@@ -3383,7 +3383,7 @@ FieldExtension: pass extended values instead of originals to `after_resolve` #31
33833383
33843384
### Deprecations
33853385
3386-
- `InternalRepresentation::Node#children` and `InternalRepresentation::Node#definitions` are deprecated due to the bug described below and the breaking change described above. Instead, use `InternalRepresentation::Node#typed_children` and `InternalRepresentation::Node#defininition`. #373
3386+
- `InternalRepresentation::Node#children` and `InternalRepresentation::Node#definitions` are deprecated due to the bug described below and the breaking change described above. Instead, use `InternalRepresentation::Node#typed_children` and `InternalRepresentation::Node#definition`. #373
33873387
33883388
### New features
33893389

gemfiles/rails_master.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ gem 'sqlite3'
1111
gem 'pg'
1212
gem "sequel"
1313
gem "evt"
14-
if RUBY_ENGINE == "ruby" # This doesn't work on truffle-ruby becuase there's no `IO::READABLE`
14+
if RUBY_ENGINE == "ruby" # This doesn't work on truffle-ruby because there's no `IO::READABLE`
1515
gem "libev_scheduler"
1616
end
1717
gem "async"

guides/authorization/visibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: guide
33
search: true
44
section: Authorization
55
title: Visibility
6-
desc: Programatically hide parts of the GraphQL schema from some users.
6+
desc: Programmatically hide parts of the GraphQL schema from some users.
77
index: 1
88
redirect_from:
99
- /schema/limiting_visibility

guides/dataloader/adopting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this example, a single object is batch-loaded to satisfy a GraphQL field.
2626
record_promise = Loaders::Record.load(1)
2727
```
2828

29-
Then, under the hood, GraphQL-Ruby manages the promise (using its `lazy_resolve` feature, upstreamed from GraphQL-Batch many years ago). GraphQL-Ruby will call `.sync` on it when no futher execution is possible; `promise.rb` implements `Promise#sync` to execute the pending work.
29+
Then, under the hood, GraphQL-Ruby manages the promise (using its `lazy_resolve` feature, upstreamed from GraphQL-Batch many years ago). GraphQL-Ruby will call `.sync` on it when no further execution is possible; `promise.rb` implements `Promise#sync` to execute the pending work.
3030

3131
- With __GraphQL::Dataloader__, you get a source, then call `.load` on it, which may pause the current Fiber, but it returns the requested object.
3232

@@ -59,7 +59,7 @@ In this example, one object is loaded, then another object is loaded _based on_
5959

6060
## Comparison: Fetching objects concurrently (independent)
6161

62-
Sometimes, you need multiple _independent_ records to perform a calcuation. Each record is loaded, then they're combined in some bit of work.
62+
Sometimes, you need multiple _independent_ records to perform a calculation. Each record is loaded, then they're combined in some bit of work.
6363

6464
- With __GraphQL-Batch__, `Promise.all(...)` is used to to wait for several pending loads:
6565

guides/fields/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ A few `extras` are available:
213213
- `owner` (the type that this field belongs to)
214214
- `lookahead` (see {% internal_link "Lookahead", "/queries/lookahead" %})
215215
- `execution_errors`, whose `#add(err_or_msg)` method should be used for adding errors
216-
- `argument_details` (Intepreter only), an instance of {{ "GraphQL::Execution::Interpreter::Arguments" | api_doc }} with argument metadata
216+
- `argument_details` (Interpreter only), an instance of {{ "GraphQL::Execution::Interpreter::Arguments" | api_doc }} with argument metadata
217217
- `parent` (the previous `object` in the query)
218218
- Custom extras, see below
219219

guides/limiters/active_operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The hooks are:
107107

108108
## Instrumentation
109109

110-
While the limiter is installed, it adds some information to the query context about its operation. It can be acccessed at `context[:active_operation_limiter]`:
110+
While the limiter is installed, it adds some information to the query context about its operation. It can be accessed at `context[:active_operation_limiter]`:
111111

112112
```ruby
113113
result = MySchema.execute(...)

guides/limiters/runtime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The hooks are:
108108

109109
## Instrumentation
110110

111-
While the limiter is installed, it adds some information to the query context about its operation. It can be acccessed at `context[:runtime_limiter]`:
111+
While the limiter is installed, it adds some information to the query context about its operation. It can be accessed at `context[:runtime_limiter]`:
112112

113113

114114
```ruby

guides/pagination/cursors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ index: 4
1010

1111
Connections use _cursors_ to advance through paginated lists. A cursor is an opaque string that indicates a specific point in this.
1212

13-
Here, _opaque_ means that the string has no meaning except its value. cursors shouldn't be decoded, reverse-engineered, or generated ad-hoc. The only guarantee of a cursor is that, after you retrieve one, you can use it to request subsequent or preceeding items in the list.
13+
Here, _opaque_ means that the string has no meaning except its value. cursors shouldn't be decoded, reverse-engineered, or generated ad-hoc. The only guarantee of a cursor is that, after you retrieve one, you can use it to request subsequent or preceding items in the list.
1414

1515
Although cursors can be tricky, they were chosen for Relay-style connections because they can be implemented in stable and high-performing ways.
1616

guides/queries/ast_analysis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Pass the **class** (and not an _instance_) of your analyzer. The analysis engine
3131
Analyzers respond to methods similar to AST visitors. They're named like `on_enter_#{ast_node}` and `on_leave_#{ast_node}`. Methods are called with three arguments:
3232

3333
- `node`: The current AST node (being entered or left)
34-
- `parent`: The AST node which preceeds this one in the tree
34+
- `parent`: The AST node which precedes this one in the tree
3535
- `visitor`: A {{ "GraphQL::Analysis::AST::Visitor" | api_doc }} which is managing this analysis run
3636

3737
For example:

guides/schema/dynamic_types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ end
207207

208208
You can also use different types for each query. A few behaviors depend on the methods defined above:
209209

210-
- If a type is not used as a return type, an argument type, or as a member of a union or implementor of an interface, it will be hidden
210+
- If a type is not used as a return type, an argument type, or as a member of a union or implementer of an interface, it will be hidden
211211
- If an interface or union has members, it will be hidden
212212
- If a field's return type is hidden, the field will be hidden
213213
- If an argument's input type is hidden, the argument will be hidden

guides/subscriptions/multi_tenant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ BudgetSchema.subscriptions.trigger(:budget_was_approved, {}, { ... }, scope: "ac
4242
Alternatively, `subscription_scope` might name something that _belongs_ to the tenant:
4343

4444
```ruby
45-
class BudgetWasApproved < GraphQL::Schema::Subcription
45+
class BudgetWasApproved < GraphQL::Schema::Subscription
4646
subscription_scope :project_id # This would work with `context[:project_id] = 1234`
4747
end
4848

guides/type_definitions/interfaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ end
177177

178178
The type definition DSL uses this mechanism, too, so you can override those methods here also.
179179

180-
Note: Under the hood, `definition_methods` causes a module to be `extend`ed by the Inteface. Any calls to `extend` or `implement` may override methods from `definition_methods`.
180+
Note: Under the hood, `definition_methods` causes a module to be `extend`ed by the interface. Any calls to `extend` or `implement` may override methods from `definition_methods`.
181181

182182
### Resolve Type
183183

javascript_client/src/subscriptions/__tests__/createAblyHandlerTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ describe("createAblyHandler", () => {
408408
}
409409
await Promise.all(disposals)
410410

411-
// 201st subscription - should work now that previous 200 subscriptions have been diposed
411+
// 201st subscription - should work now that previous 200 subscriptions have been disposed
412412
const { dispose } = ablyHandler(
413413
operation,
414414
variables,

javascript_client/src/subscriptions/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ interface ApolloSubscription {
33
}
44

55
// State management for subscriptions.
6-
// Used to add subscriptions to an Apollo network intrface.
6+
// Used to add subscriptions to an Apollo network interface.
77
class ApolloSubscriptionRegistry {
88
// Apollo expects unique ids to reference each subscription,
99
// here's a simple incrementing ID generator which starts at 1

javascript_client/src/sync/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function sync(options: SyncOptions) {
171171
})
172172

173173
var failed = responseData.failed.length
174-
// These might get overriden for status output
174+
// These might get overridden for status output
175175
var notModified = responseData.not_modified.length
176176
var added = responseData.added.length
177177
if (failed) {

lib/generators/graphql/install/mutation_root_generator.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module Install
99
class MutationRootGenerator < Rails::Generators::Base
1010
include Core
1111

12-
desc "Create mutation base type, mutation root tipe, and adds the latter to the schema"
12+
desc "Create mutation base type, mutation root type, and adds the latter to the schema"
1313
source_root File.expand_path('../templates', __FILE__)
1414

1515
class_option :schema,
@@ -31,4 +31,4 @@ def generate
3131
end
3232
end
3333
end
34-
end
34+
end

lib/graphql/analysis/ast/query_complexity.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def initialize(query)
1212
@complexities_on_type_by_query = {}
1313
end
1414

15-
# Overide this method to use the complexity result
15+
# Override this method to use the complexity result
1616
def result
1717
max_possible_complexity
1818
end

lib/graphql/dataloader/null_dataloader.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Dataloader
88
# simple internal code while adding the option to add Dataloader.
99
class NullDataloader < Dataloader
1010
# These are all no-ops because code was
11-
# executed sychronously.
11+
# executed synchronously.
1212
def run; end
1313
def run_isolated; yield; end
1414
def yield

lib/graphql/execution/interpreter/runtime.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def gather_selections(owner_object, owner_type, selections, selections_to_run =
130130
selections = selections_by_name[response_key]
131131
# if there was already a selection of this field,
132132
# use an array to hold all selections,
133-
# otherise, use the single node to represent the selection
133+
# otherwise, use the single node to represent the selection
134134
if selections
135135
# This field was already selected at least once,
136136
# add this node to the list of selections

lib/graphql/rubocop/graphql/base_cop.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class BaseCop < RuboCop::Cop::Base
99

1010
# Return the source of `send_node`, but without the keyword argument represented by `pair_node`
1111
def source_without_keyword_argument(send_node, pair_node)
12-
# work back to the preceeding comma
12+
# work back to the preceding comma
1313
first_pos = pair_node.location.expression.begin_pos
1414
end_pos = pair_node.location.expression.end_pos
1515
node_source = send_node.source_range.source

lib/graphql/schema.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def trace_class_for(mode, build: false)
187187
# {default_trace_mode} is used when no `trace_mode: ...` is requested.
188188
#
189189
# When a `trace_class` is added this way, it will _not_ receive other modules added with `trace_with(...)`
190-
# unless `trace_mode` is explicitly given. (This class will not recieve any default trace modules.)
190+
# unless `trace_mode` is explicitly given. (This class will not receive any default trace modules.)
191191
#
192192
# Subclasses of the schema will use `trace_class` as a base class for this mode and those
193193
# subclass also will _not_ receive default tracing modules.

lib/graphql/schema/list.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def validate_non_null_input(value, ctx, max_errors: nil)
5252
unless item_result.valid?
5353
if max_errors
5454
if max_errors == 0
55-
add_max_errros_reached_message(result)
55+
add_max_errors_reached_message(result)
5656
break
5757
end
5858

@@ -76,7 +76,7 @@ def ensure_array(value)
7676
end
7777
end
7878

79-
def add_max_errros_reached_message(result)
79+
def add_max_errors_reached_message(result)
8080
message = "Too many errors processing list variable, max validation error limit reached. Execution aborted"
8181
item_result = GraphQL::Query::InputValidationResult.from_problem(message)
8282
result.merge_result!(nil, item_result)

lib/graphql/schema/member/has_arguments.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@ def argument_class(new_arg_class = nil)
259259
#
260260
# @param values [Hash<String, Object>]
261261
# @param context [GraphQL::Query::Context]
262-
# @yield [Interpreter::Arguments, Execution::Lazy<Interpeter::Arguments>]
263-
# @return [Interpreter::Arguments, Execution::Lazy<Interpeter::Arguments>]
262+
# @yield [Interpreter::Arguments, Execution::Lazy<Interpreter::Arguments>]
263+
# @return [Interpreter::Arguments, Execution::Lazy<Interpreter::Arguments>]
264264
def coerce_arguments(parent_object, values, context, &block)
265265
# Cache this hash to avoid re-merging it
266266
arg_defns = context.warden.arguments(self)

lib/graphql/schema/member/has_directives.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def get_directives(schema_member, directives, directives_method)
9191
private
9292

9393
# Modify `target` by adding items from `dirs` such that:
94-
# - Any name conflict is overriden by the incoming member of `dirs`
94+
# - Any name conflict is overridden by the incoming member of `dirs`
9595
# - Any other member of `dirs` is appended
9696
# @param target [Array<GraphQL::Schema::Directive>]
9797
# @param dirs [Array<GraphQL::Schema::Directive>]

lib/graphql/schema/member/relay_shortcuts.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def configured_edge_type_class
7676

7777
private
7878

79-
# If one of thse values is accessed, initialize all the instance variables to retain
79+
# If one of these values is accessed, initialize all the instance variables to retain
8080
# a consistent object shape.
8181
def initialize_relay_metadata
8282
if !defined?(@connection_type)

lib/graphql/schema/warden.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def visible_and_reachable_type?(type_defn)
295295
true
296296
else
297297
if @context.respond_to?(:logger) && (logger = @context.logger)
298-
logger.debug { "Interface `#{type_defn.graphql_name}` hidden because it has no visible implementors" }
298+
logger.debug { "Interface `#{type_defn.graphql_name}` hidden because it has no visible implementers" }
299299
end
300300
false
301301
end

lib/graphql/static_validation/rules/fields_will_merge.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def compared_fragments_key(frag1, frag2, exclusive)
396396
end
397397

398398
# Given two list of parents, find out if they are mutually exclusive
399-
# In this context, `parents` represends the "self scope" of the field,
399+
# In this context, `parents` represents the "self scope" of the field,
400400
# what types may be found at this point in the query.
401401
def mutually_exclusive?(parents1, parents2)
402402
if parents1.empty? || parents2.empty?

lib/graphql/subscriptions/action_cable_subscriptions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def initialize(serializer: Serialize, namespace: '', action_cable: ActionCable,
107107
when 2
108108
true
109109
else
110-
raise ArgumentError, "#{@serializer} must repond to `.load` accepting one or two arguments"
110+
raise ArgumentError, "#{@serializer} must respond to `.load` accepting one or two arguments"
111111
end
112112
@transmit_ns = namespace
113113
super

lib/graphql/type_kinds.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def initialize(name, abstract: false, leaf: false, fields: false, wraps: false,
1616
@description = description
1717
end
1818

19-
# Does this TypeKind have multiple possible implementors?
19+
# Does this TypeKind have multiple possible implementers?
2020
# @deprecated Use `abstract?` instead of `resolves?`.
2121
def resolves?; @abstract; end
2222
# Is this TypeKind abstract?

spec/graphql/analysis/ast/query_complexity_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@
387387
end
388388
end
389389

390-
describe "calucation complexity for a multiplex" do
390+
describe "calculation complexity for a multiplex" do
391391
let(:query_string) {%|
392392
query cheeses {
393393
cheese(id: 1) {

spec/graphql/authorization_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ def auth_execute(*args, **kwargs)
453453
assert_equal "RelayObjectEdge", visible_res["data"]["hiddenEdge"]["__typename"]
454454
end
455455

456-
it "treats hidden enum values as non-existant, even in lists" do
456+
it "treats hidden enum values as non-existent, even in lists" do
457457
hidden_res_1 = auth_execute <<-GRAPHQL, context: { hide: true }
458458
{
459459
landscapeFeature(enum: TAR_PIT)

spec/graphql/execution/interpreter_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def interpreter_context_for(key)
143143
base_ctx_value = context[key]
144144
interpreter_ctx_value = context.namespace(:interpreter)[key]
145145
if base_ctx_value != interpreter_ctx_value
146-
raise "Context mismatch for #{key} -> #{base_ctx_value} / intepreter: #{interpreter_ctx_value}"
146+
raise "Context mismatch for #{key} -> #{base_ctx_value} / interpreter: #{interpreter_ctx_value}"
147147
else
148148
base_ctx_value
149149
end

spec/graphql/language/document_from_schema_definition_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ class Query < GraphQL::Schema::Object
322322
end
323323
end
324324

325-
describe "with a visiblity check" do
325+
describe "with a visibility check" do
326326
let(:expected_idl) { <<-GRAPHQL
327327
type QueryType {
328328
foo: Foo

spec/graphql/language/parser_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@
312312
assert_equal "b\\", document.definitions[0].selections[0].arguments[1].value
313313
end
314314

315-
it "parses backslases in non-last arguments" do
315+
it "parses backslashes in non-last arguments" do
316316
document = subject.parse <<-GRAPHQL
317317
query {
318318
item(text: "b\\\\", otherText: "a") {

0 commit comments

Comments
 (0)