Skip to content

Commit

Permalink
chore: First sentence of Javadoc is missing an ending period
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Solórzano <[email protected]>
  • Loading branch information
jorsol committed Aug 26, 2024
1 parent 095e77b commit 7c121a7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions stringprep/src/main/java/com/ongres/stringprep/Option.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
public enum Option {

/**
* B.1 Commonly mapped to nothing
* B.1 Commonly mapped to nothing.
*/
MAP_TO_NOTHING,
/**
Expand Down Expand Up @@ -41,23 +41,23 @@ public enum Option {
*/
FORBID_ADDITIONAL_CHARACTERS,
/**
* C.1.1 ASCII space characters
* C.1.1 ASCII space characters.
*/
FORBID_ASCII_SPACES,
/**
* C.1.2 Non-ASCII space characters
* C.1.2 Non-ASCII space characters.
*/
FORBID_NON_ASCII_SPACES,
/**
* C.2.1 ASCII control characters
* C.2.1 ASCII control characters.
*/
FORBID_ASCII_CONTROL,
/**
* C.2.2 Non-ASCII control characters
* C.2.2 Non-ASCII control characters.
*/
FORBID_NON_ASCII_CONTROL,
/**
* C.3 Private use
* C.3 Private use.
*/
FORBID_PRIVATE_USE,
/**
Expand All @@ -73,15 +73,15 @@ public enum Option {
*/
FORBID_INAPPROPRIATE_FOR_PLAIN_TEXT,
/**
* C.7 Inappropriate for canonical representation
* C.7 Inappropriate for canonical representation.
*/
FORBID_INAPPROPRIATE_FOR_CANON_REP,
/**
* C.8 Change display properties or are deprecated
* C.8 Change display properties or are deprecated.
*/
FORBID_CHANGE_DISPLAY_AND_DEPRECATED,
/**
* C.9 Tagging characters
* C.9 Tagging characters.
*/
FORBID_TAGGING;

Expand Down

0 comments on commit 7c121a7

Please sign in to comment.