Skip to content

Commit eff012f

Browse files
committed
clean up
1 parent 5d95579 commit eff012f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

openapi-parser/src/main/java/io/openapiparser/OpenApiResult.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ public interface OpenApiResult {
3838
*
3939
* @param api class of the OpenAPI model
4040
* @param <T> OpenAPI model type
41-
* @return OpenAPI model
41+
* @return the OpenAPI model.
4242
*/
4343
<T> T getModel (Class<T> api);
4444

4545
/**
46-
* Bundle the document, i.e. merge a multi-file document into a single file document. The bundled document has to
46+
* Bundle the document, i.e. merge a multi-file document into a single-file document. The bundled document has to
4747
* be parsed to navigate its OpenAPI model.
4848
*
4949
* @return a raw bundled copy of the OpenAPI document.
@@ -56,7 +56,7 @@ public interface OpenApiResult {
5656
* can be used to create a single file document.
5757
*
5858
* @param writer the target writer
59-
* @throws IOException if writing failed
59+
* @throws IOException if writing failed.
6060
*/
6161
@Experimental
6262
void write(Writer writer) throws IOException;
@@ -77,7 +77,7 @@ public interface OpenApiResult {
7777
*
7878
* @param validator json schema validator
7979
* @param schemaStore json schema store
80-
* @return true if valid, else false
80+
* @return true if valid, else false.
8181
*/
8282
boolean validate (Validator validator, SchemaStore schemaStore);
8383

0 commit comments

Comments
 (0)