Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit23a38fe

Browse files
committed
fix typo
1 parent7e9d31d commit23a38fe

File tree

12 files changed

+21
-21
lines changed

12 files changed

+21
-21
lines changed

‎CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
121121

122122
#[7.0.2] 2024-02-18
123123

124-
- Fix`#[derive(OneofObject)]` rejecting enums where the type comes from a macrosubsitution[#1473](https://github.com/async-graphql/async-graphql/pull/1473)
124+
- Fix`#[derive(OneofObject)]` rejecting enums where the type comes from a macrosubstitution[#1473](https://github.com/async-graphql/async-graphql/pull/1473)
125125
- Optimize object proc-macro codegen[#1470](https://github.com/async-graphql/async-graphql/pull/1470)
126126
- Use`impl Future` instead of`async-trait` in most traits.[#1468](https://github.com/async-graphql/async-graphql/pull/1468)
127127
- Upgrade`base64` to`0.21`[#1466](https://github.com/async-graphql/async-graphql/pull/1466)
@@ -193,7 +193,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
193193

194194
#[6.0.1] 2023-08-02
195195

196-
- dynamic: remove`TypeRefInnner`
196+
- dynamic: remove`TypeRefInner`
197197
- update MSRV to`1.67.0`
198198

199199
#[6.0.0] 2023-07-29
@@ -278,7 +278,7 @@ pub fn lowercase() -> impl CustomDirective {
278278
- dynamic schema: add boxed_any function[#1179](https://github.com/async-graphql/async-graphql/pull/1179)
279279
- Improve GraphiQL v2[#1182](https://github.com/async-graphql/async-graphql/pull/1182)
280280
- Fix:__Type.oneOf to__Type.isOneOf[#1188](https://github.com/async-graphql/async-graphql/pull/1188)
281-
-Implemente From<ID> for ConstValue[#1169](https://github.com/async-graphql/async-graphql/pull/1169)
281+
-Implement From<ID> for ConstValue[#1169](https://github.com/async-graphql/async-graphql/pull/1169)
282282
- Fixes[#1192](https://github.com/async-graphql/async-graphql/issues/1192)
283283

284284
#[5.0.4] 2022-12-17
@@ -421,7 +421,7 @@ pub fn lowercase() -> impl CustomDirective {
421421
#[4.0.3] 2022-6-20
422422

423423
- Custom error type in axum request extractor[#945](https://github.com/async-graphql/async-graphql/pull/945)
424-
- Add nodes exposure on`ConectionType` so nesting through edges isn't always needed.[#952](https://github.com/async-graphql/async-graphql/pull/952)
424+
- Add nodes exposure on`ConnectionType` so nesting through edges isn't always needed.[#952](https://github.com/async-graphql/async-graphql/pull/952)
425425
- Make email-validator optional[#950](https://github.com/async-graphql/async-graphql/pull/950)
426426

427427
#[4.0.2] 2022-6-10

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ This crate offers the following features. Most are not activated by default, exc
186186
###Observability
187187

188188
One of the tools used to monitor your graphql server in production is Apollo Studio. Apollo Studio is a cloud platform that helps you build, monitor, validate, and secure your organization's data graph.
189-
Add the extension crate[`async_graphql_apollo_studio_extension`](https://github.com/async-graphql/async_graphql_apollo_studio_extension) to make thisavaliable.
189+
Add the extension crate[`async_graphql_apollo_studio_extension`](https://github.com/async-graphql/async_graphql_apollo_studio_extension) to make thisavailable.
190190

191191
##Who's using`async-graphql` in production?
192192

‎derive/src/complex_object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub fn generate(
3232
letmut resolvers =Vec::new();
3333
letmut schema_fields =Vec::new();
3434

35-
// Computation of thederivated fields
35+
// Computation of thederived fields
3636
letmut derived_impls =vec![];
3737
for itemin&mut item_impl.items{
3838
ifletImplItem::Fn(method) = item{

‎derive/src/object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ pub fn generate(
7676

7777
letmut unresolvable_key =String::new();
7878

79-
// Computation of thederivated fields
79+
// Computation of thederived fields
8080
letmut derived_impls =vec![];
8181
for itemin&mut item_impl.items{
8282
ifletImplItem::Fn(method) = item{

‎derive/src/simple_object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub fn generate(object_args: &args::SimpleObject) -> GeneratorResult<TokenStream
8383

8484
letmut processed_fields:Vec<SimpleObjectFieldGenerator> =vec![];
8585

86-
// Before processing the fields, we generate thederivated fields
86+
// Before processing the fields, we generate thederived fields
8787
for fieldin&s.fields{
8888
processed_fields.push(SimpleObjectFieldGenerator{
8989
field,

‎docs/en/src/extensions_inner_working.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ async fn resolve(
198198

199199
###subscribe
200200

201-
The`subscribe` lifecycle has the same behavior as the`request` but for a`Subscritpion`.
201+
The`subscribe` lifecycle has the same behavior as the`request` but for a`Subscription`.
202202

203203
```rust
204204
#externcrate async_graphql;

‎parser/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ pub type Result<T> = std::result::Result<T, Error>;
157157

158158
/// An iterator over the positions inside an error.
159159
///
160-
/// Constructed from the `Error::postions` function.
160+
/// Constructed from the `Error::positions` function.
161161
#[derive(Debug,Clone)]
162162
pubstructErrorPositions(ErrorPositionsInner);
163163

‎src/dynamic/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//!Suppport for dynamic schema
1+
//!Support for dynamic schema
22
//!
33
//! # Create a simple GraphQL schema
44
//!

‎src/http/graphiql_v2_source.hbs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@
3434
></script>
3535
<linkrel="icon"href="https://graphql.org/favicon.ico">
3636
<linkrel="stylesheet"href="https://unpkg.com/graphiql@{{version}}/graphiql.min.css" />
37-
{{! plugins headassests }}
37+
{{! plugins headassets }}
3838
{{#ifplugins}}
3939
{{#eachplugins}}
4040
{{#ifhead_assets}}
4141
{{&head_assets}}
4242
{{/if}}
4343
{{/each}}
4444
{{/if}}
45-
{{! end plugins headassests }}
45+
{{! end plugins headassets }}
4646
</head>
4747

4848
<body>
@@ -51,15 +51,15 @@
5151
src="https://unpkg.com/graphiql@{{version}}/graphiql.min.js"
5252
type="application/javascript"
5353
></script>
54-
{{! plugins bodyassests }}
54+
{{! plugins bodyassets }}
5555
{{#ifplugins}}
5656
{{#eachplugins}}
5757
{{#ifbody_assets}}
5858
{{&body_assets}}
5959
{{/if}}
6060
{{/each}}
6161
{{/if}}
62-
{{! end plugins bodyassests }}
62+
{{! end plugins bodyassets }}
6363
<script>
6464
customFetch= (url,opts= {})=> {
6565
returnfetch(url, {...opts, credentials:'{{ credentials }}'})

‎src/registry/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ pub struct MetaInputValue {
155155
/// Arbitrary string metadata that will be propagated to the supergraph when
156156
/// using Apollo Federation. This attribute is repeatable
157157
pubtags:Vec<String>,
158-
/// Indicate that an inputobnject is secret
158+
/// Indicate that an inputobject is secret
159159
pubis_secret:bool,
160160
/// Custom directive invocations
161161
pubdirective_invocations:Vec<MetaDirectiveInvocation>,
@@ -466,7 +466,7 @@ pub enum MetaType {
466466
rust_typename:Option<&'staticstr>,
467467
/// custom directive invocations
468468
directive_invocations:Vec<MetaDirectiveInvocation>,
469-
///Inidicates to composition that the target element is accessible only
469+
///Indicates to composition that the target element is accessible only
470470
/// to the authenticated supergraph users with the appropriate
471471
/// JWT scopes when using Apollo Federation.
472472
requires_scopes:Vec<String>,
@@ -514,7 +514,7 @@ pub enum MetaType {
514514
rust_typename:Option<&'staticstr>,
515515
/// custom directive invocations
516516
directive_invocations:Vec<MetaDirectiveInvocation>,
517-
///Inidicates to composition that the target element is accessible only
517+
///Indicates to composition that the target element is accessible only
518518
/// to the authenticated supergraph users with the appropriate
519519
/// JWT scopes when using Apollo Federation.
520520
requires_scopes:Vec<String>,

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp