Skip to content

Commit

Permalink
fix JavaDoc again, fixes #153
Browse files Browse the repository at this point in the history
  • Loading branch information
dmfs committed Dec 25, 2023
1 parent 22ed199 commit a9a83dd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'

- name: Checkout Repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'

- name: Checkout Repo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public final class InstanceOf<T> extends QualityComposition<T>
* <p>
* This provides a type-safe way to downcast and apply a {@link Quality} of a subtype.
*
* <h2>Example</h2>
* <h4>Example</h4>
* <pre>{@code
* assertThat(someObject,
* is(instanceOf(Number.class, that(has(Number::intValue, equalTo(1))))));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

/**
* {@link Quality} of a JSON array that delegates to a normal {@link Iterable} {@link Quality}.
* <h2>Example</h2>
* <h4>Example</h4>
* <pre>
* arrayThat(contains(string(xyz)))
* </pre>
Expand Down

0 comments on commit a9a83dd

Please sign in to comment.