Skip to content

Commit 0fc95dd

Browse files
kianmengtyranron
andauthored
Integrate codespell for Book (#1121)
- add `codespell` CI job - add `book.codespell` Makefile command - fix Book typos found by codespell Co-authored-by: Kai Ren <[email protected]>
1 parent d11e351 commit 0fc95dd

File tree

8 files changed

+35
-10
lines changed

8 files changed

+35
-10
lines changed

.codespellrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[codespell]
2+
ignore-words-list = crate

.github/workflows/ci.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
if: ${{ github.event_name == 'pull_request' }}
2525
needs:
2626
- bench
27+
- codespell
2728
- clippy
2829
- feature
2930
- msrv
@@ -54,6 +55,15 @@ jobs:
5455

5556
- run: make cargo.lint
5657

58+
codespell:
59+
name: codespell (Book)
60+
runs-on: ubuntu-latest
61+
steps:
62+
- uses: actions/checkout@v4
63+
- uses: codespell-project/actions-codespell@v2
64+
with:
65+
path: book/
66+
5767
rustfmt:
5868
runs-on: ubuntu-latest
5969
steps:
@@ -342,6 +352,7 @@ jobs:
342352
needs:
343353
- bench
344354
- clippy
355+
- codespell
345356
- feature
346357
- msrv
347358
- package
@@ -391,7 +402,7 @@ jobs:
391402
name: deploy (Book)
392403
if: ${{ github.ref == 'refs/heads/master'
393404
|| startsWith(github.ref, 'refs/tags/juniper@') }}
394-
needs: ["test", "test-book"]
405+
needs: ["codespell", "test", "test-book"]
395406
runs-on: ubuntu-latest
396407
steps:
397408
- uses: actions/checkout@v4

Makefile

+14-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ eq = $(if $(or $(1),$(2)),$(and $(findstring $(1),$(2)),\
1818
book: book.build
1919

2020

21+
codespell: book.codespell
22+
23+
2124
fmt: cargo.fmt
2225

2326

@@ -137,6 +140,15 @@ book.build:
137140
mdbook build book/ $(if $(call eq,$(out),),,-d $(out))
138141

139142

143+
# Spellcheck Book.
144+
#
145+
# Usage:
146+
# make book.codespell [fix=(no|yes)]
147+
148+
book.codespell:
149+
codespell book/ $(if $(call eq,$(fix),yes),--write-changes,)
150+
151+
140152
# Serve Book on some port.
141153
#
142154
# Usage:
@@ -180,8 +192,8 @@ graphql-playground:
180192
# .PHONY section #
181193
##################
182194

183-
.PHONY: book fmt lint release test \
184-
book.build book.serve \
195+
.PHONY: book codespell fmt lint release test \
196+
book.build book.codespell book.serve \
185197
cargo.fmt cargo.lint cargo.release cargo.test \
186198
graphiql graphql-playground \
187199
test.book test.cargo

book/src/advanced/dataloaders.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Avoiding the N+1 Problem With Dataloaders
22

33
A common issue with graphql servers is how the resolvers query their datasource.
4-
This issue results in a large number of unneccessary database queries or http requests.
4+
This issue results in a large number of unnecessary database queries or http requests.
55
Say you were wanting to list a bunch of cults people were in
66

77
```graphql

book/src/advanced/multiple_ops_per_request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Multiple operations per request
22

3-
The GraphQL standard generally assumes there will be one server request for each client operation you want to perform (such as a query or mutation). This is conceptually simple but has the potential to be inefficent.
3+
The GraphQL standard generally assumes there will be one server request for each client operation you want to perform (such as a query or mutation). This is conceptually simple but has the potential to be inefficient.
44

55
Some client libraries such as [apollo-link-batch-http](https://www.apollographql.com/docs/link/links/batch-http.html) have added the ability to batch operations in a single HTTP request to save network round-trips and potentially increase performance. There are some [tradeoffs](https://blog.apollographql.com/batching-client-graphql-queries-a685f5bcd41b) that should be considered before batching requests.
66

book/src/types/interfaces.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ Also, enum name can be specified explicitly, if desired.
6161
# extern crate juniper;
6262
use juniper::{graphql_interface, GraphQLObject};
6363

64-
#[graphql_interface(enum = CharaterInterface, for = Human)]
64+
#[graphql_interface(enum = CharacterInterface, for = Human)]
6565
trait Character {
6666
fn id(&self) -> &str;
6767
}
6868

6969
#[derive(GraphQLObject)]
70-
#[graphql(impl = CharaterInterface)]
70+
#[graphql(impl = CharacterInterface)]
7171
struct Human {
7272
id: String,
7373
home_planet: String,
@@ -248,7 +248,7 @@ use juniper::{graphql_interface, GraphQLObject};
248248
pub struct ObjA {
249249
id: Vec<String>,
250250
// ^^ the evaluated program panicked at
251-
// 'Failed to implement interface `Character` on `ObjA`: Field `id`: implementor is expected to return a subtype of
251+
// 'Failed to implement interface `Character` on `ObjA`: Field `id`: implementer is expected to return a subtype of
252252
// interface's return object: `[String!]!` is not a subtype of `String!`.'
253253
}
254254

book/src/types/objects/using_contexts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ impl User {
127127
let DatabaseContext(context) = context;
128128
// If context is immutable use .read() on RwLock.
129129
let mut context = context.write().await;
130-
// Preform a mutable operation.
130+
// Perform a mutable operation.
131131
context.requested_count.entry(self.id).and_modify(|e| { *e += 1 }).or_insert(1).clone()
132132
}
133133

book/src/types/other-index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Other Types
22

3-
The GraphQL type system provides several types in additon to objects.
3+
The GraphQL type system provides several types in addition to objects.
44

55
Find out more about each type below:
66

0 commit comments

Comments
 (0)