Skip to content

Commit ab67a9a

Browse files
authored
🐛 fix HTML in docs (#158)
1 parent a2b21bf commit ab67a9a

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up JDK 11
2020
uses: actions/setup-java@v3
2121
with:
22-
java-version: 11
22+
java-version: "11"
2323
distribution: "temurin"
2424
cache: "maven"
2525

.github/workflows/maven-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
- name: Set up Maven Central Repository
2121
uses: actions/setup-java@v3
2222
with:
23-
java-version: '8'
24-
distribution: 'adopt'
23+
java-version: "8"
24+
distribution: "adopt"
2525
server-id: ossrh
2626
server-username: MAVEN_USERNAME
2727
server-password: MAVEN_PASSWORD

src/main/java/com/mindee/parsing/generated/GeneratedFeature.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@
1818
* </p>
1919
* <p>
2020
* If you want, you can "cast" the raw hashmap into one of the standard Mindee fields:
21-
* <ul>
22-
* <li>StringField <-- asStringField()</li>
23-
* <li>AmountField <-- asAmountField()</li>
24-
* <li>DateField <-- asDateField()</li>
25-
* <li>ClassificationField <-- asClassificationField()</li>
26-
* </ul>
27-
* This will not work for any feature which is a list in the Mindee return.
2821
* </p>
22+
* <ul>
23+
* <li>StringField - asStringField()</li>
24+
* <li>AmountField - asAmountField()</li>
25+
* <li>DateField - asDateField()</li>
26+
* <li>ClassificationField - asClassificationField()</li>
27+
* </ul>
28+
* This will not work for any feature which is a list in the Mindee return.
29+
*
2930
*/
3031
@Getter
3132
public class GeneratedFeature extends ArrayList<GeneratedObject> {

0 commit comments

Comments
 (0)