Skip to content

Commit c11a26e

Browse files
committed
overriden ==> overridden
1 parent 41710d6 commit c11a26e

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

CHANGELOG-pro.md

+1-1
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -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
@@ -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)

javascript_client/src/sync/index.ts

+1-1
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/graphql/schema/member/has_directives.rb

+1-1
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>]

spec/graphql/pagination/connections_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def users
141141
end
142142

143143
schema = Class.new(GraphQL::Schema) do
144-
# This value should be overriden by `max_page_size: nil` in the field definition above
144+
# This value should be overridden by `max_page_size: nil` in the field definition above
145145
default_max_page_size 2
146146
query(query_type)
147147
end

spec/graphql/schema/interface_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@ module Node
612612
include GraphQL::Schema::Interface
613613
definition_methods do
614614
def resolve_type(obj, ctx)
615-
raise "This should never be called -- it's overriden"
615+
raise "This should never be called -- it's overridden"
616616
end
617617
end
618618
end

spec/graphql/subscriptions/broadcast_analyzer_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def broadcastable?(query_str, schema: BroadcastTestSchema)
119119
subscription {
120120
throwableWasThrown {
121121
throwable {
122-
# Although this is false on Javelin, it's not overriden on Shot,
122+
# Although this is false on Javelin, it's not overridden on Shot,
123123
# so it should use the default of `true`
124124
...on Shot {
125125
splitBroadcastableTest

spec/graphql/subscriptions_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ def validate_update?(context:, **_rest)
973973
assert_equal({"validate_true" => 1, "validate_false" => 1, "counter_1" => 1}, schema::COUNTERS)
974974
end
975975

976-
describe "when the method is overriden" do
976+
describe "when the method is overridden" do
977977
let(:schema) { SometimesSkipUpdateValidationSchema }
978978
it "calls `validate_update?`" do
979979
schema.execute("subscription { counter(id: \"3\") { value } }", context: { socket: "2" })

0 commit comments

Comments
 (0)