Skip to content

Commit 1ac7261

Browse files
authored
Fix spelling (#205)
Co-authored-by: Josh Soref <[email protected]>
1 parent 5132b95 commit 1ac7261

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ type Planet implements Node {
515515
terrains: [String]
516516

517517
"""
518-
The percentage of the planet surface that is naturally occuring water or bodies
518+
The percentage of the planet surface that is naturally occurring water or bodies
519519
of water.
520520
"""
521521
surfaceWater: Float

scripts/deploy-public

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ git update-index --add public/*
2727
TREE=`git write-tree --prefix=public`
2828
echo "Wrote tree object: $TREE"
2929

30-
echo "Reseting index to former state."
30+
echo "Resetting index to former state."
3131
git reset public
3232

3333
COMMIT=`git commit-tree $TREE -p $PARENT -m "Build gh-pages from $HEAD"`

scripts/download.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async function cacheResources() {
6060

6161
const outfile = process.argv[2];
6262
if (!outfile) {
63-
console.error('Missing ouput file!');
63+
console.error('Missing output file!');
6464
process.exit(1);
6565
}
6666

src/schema/types/planet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ G. "2" is twice or 2 standard Gs. "0.5" is half or 0.5 standard Gs.`,
8383
surfaceWater: {
8484
type: GraphQLFloat,
8585
resolve: planet => convertToNumber(planet.surface_water),
86-
description: `The percentage of the planet surface that is naturally occuring water or bodies
86+
description: `The percentage of the planet surface that is naturally occurring water or bodies
8787
of water.`,
8888
},
8989
residentConnection: connectionFromUrls(

0 commit comments

Comments
 (0)