Skip to content

Commit fc8bd1f

Browse files
committed
Minor documentation fixes
1 parent 8076058 commit fc8bd1f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ theme = "hugo-sustain"
55
pygmentsUseClasses=true
66

77
[params]
8-
latestReleases = ["v14.1", "v16.0"]
8+
latestReleases = ["v16.1", "v14.1"]
99
latestDocs = "v16"
1010

1111
## Main Menu

content/documentation/master/batching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Here is how you might put this in place:
102102
@Override
103103
public CompletionStage<List<Object>> load(List<String> keys) {
104104
//
105-
// we use supplyAsync() of values here for maximum parellisation
105+
// we use supplyAsync() of values here for maximum parallelisation
106106
//
107107
return CompletableFuture.supplyAsync(() -> getCharacterDataViaBatchHTTPApi(keys));
108108
}

content/documentation/master/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Dependency:
2828
{{< highlight groovy "linenos=table" >}}
2929

3030
dependencies {
31-
compile 'com.graphql-java:graphql-java:13.0'
31+
compile 'com.graphql-java:graphql-java:16.1'
3232
}
3333
{{< / highlight >}}
3434

@@ -42,7 +42,7 @@ Dependency:
4242
<dependency>
4343
<groupId>com.graphql-java</groupId>
4444
<artifactId>graphql-java</artifactId>
45-
<version>13.0</version>
45+
<version>16.1</version>
4646
</dependency>
4747
{{< / highlight >}}
4848

content/documentation/v16/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Dependency:
2828
{{< highlight groovy "linenos=table" >}}
2929

3030
dependencies {
31-
compile 'com.graphql-java:graphql-java:15.0'
31+
compile 'com.graphql-java:graphql-java:16.1'
3232
}
3333
{{< / highlight >}}
3434

@@ -42,7 +42,7 @@ Dependency:
4242
<dependency>
4343
<groupId>com.graphql-java</groupId>
4444
<artifactId>graphql-java</artifactId>
45-
<version>15.0</version>
45+
<version>16.1</version>
4646
</dependency>
4747
{{< / highlight >}}
4848

content/documentation/v16/schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ Extended graphql-java scalars
310310
* ``GraphQLBigDecimal``
311311
* ``GraphQLBigInteger``
312312

313-
Note that the semantics around the extended scalars might not be understood by your clients. For example mapping a Java Long (max value 26^3-1) into a JavaScript Number ( max value 2^53 - 1)
313+
Note that the semantics around the extended scalars might not be understood by your clients. For example mapping a Java Long (max value 2^63-1) into a JavaScript Number ( max value 2^53 - 1)
314314
may be problematic for you.
315315

316316

0 commit comments

Comments
 (0)