Skip to content

Commit 2d5a995

Browse files
authored
Merge pull request #546 from alex-ketch/fix-scalar-doc-string
fix typo in Date scalar doc string
2 parents d1acb1b + 52cd64b commit 2d5a995

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions/checkout@v3
1616

1717
- name: Build docker images
18-
run: PG_VERSION=${{ matrix.postgres }} docker-compose -f .ci/docker-compose.yml build
18+
run: PG_VERSION=${{ matrix.postgres }} docker compose -f .ci/docker-compose.yml build
1919

2020
- name: Run tests
21-
run: PG_VERSION=${{ matrix.postgres }} docker-compose -f .ci/docker-compose.yml run test
21+
run: PG_VERSION=${{ matrix.postgres }} docker compose -f .ci/docker-compose.yml run test

docs/assets/demo_schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ An opaque string using for tracking a position in results during pagination
424424
"""
425425
scalar Cursor
426426

427-
"""A date wihout time information"""
427+
"""A date without time information"""
428428
scalar Date
429429

430430
"""

src/graphql.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1594,7 +1594,7 @@ impl ___Type for Scalar {
15941594
Self::String(_) => "A string",
15951595
Self::Boolean => "A value that is true or false",
15961596
Self::BigInt => "An arbitrary size integer represented as a string",
1597-
Self::Date => "A date wihout time information",
1597+
Self::Date => "A date without time information",
15981598
Self::Time => "A time without date information",
15991599
Self::Datetime => "A date and time",
16001600
Self::UUID => "A universally unique identifier",

test/expected/resolve_graphiql_schema.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3338,7 +3338,7 @@ begin;
33383338
], +
33393339
"interfaces": [ +
33403340
], +
3341-
"description": "A date wihout time information", +
3341+
"description": "A date without time information", +
33423342
"inputFields": null, +
33433343
"possibleTypes": null +
33443344
}, +

0 commit comments

Comments
 (0)