From fe9434b66576846cbef99d845d9fcade08fe088f Mon Sep 17 00:00:00 2001 From: tyranron Date: Fri, 27 Oct 2023 17:54:49 +0300 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 2 +- book/src/types/interfaces.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68d1ceea5..fe234eee1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,13 +56,13 @@ jobs: - run: make cargo.lint codespell: + name: codespell (Book) runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: codespell-project/actions-codespell@v2 with: path: book/ - check_filenames: true rustfmt: runs-on: ubuntu-latest diff --git a/book/src/types/interfaces.md b/book/src/types/interfaces.md index cc3fd4738..8990a0946 100644 --- a/book/src/types/interfaces.md +++ b/book/src/types/interfaces.md @@ -248,7 +248,7 @@ use juniper::{graphql_interface, GraphQLObject}; pub struct ObjA { id: Vec, // ^^ the evaluated program panicked at -// 'Failed to implement interface `Character` on `ObjA`: Field `id`: implementor is expected to return a subtype of +// 'Failed to implement interface `Character` on `ObjA`: Field `id`: implementer is expected to return a subtype of // interface's return object: `[String!]!` is not a subtype of `String!`.' }