Skip to content

Commit

Permalink
docs: Synch generator and HTML rendering for enums description
Browse files Browse the repository at this point in the history
  • Loading branch information
JPPortier committed Jun 24, 2024
1 parent 83c4895 commit 6ddc96d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public class VerificationMethod extends EnumDynamic<String, VerificationMethod>
public static final VerificationMethod FLASH_CALL = new VerificationMethod("flashcall");

/**
* Verification by placing a PSTN call to the user&#39;s phone and playing an announcement, asking
* the user to press a particular digit to verify the phone number.
* Verification by placing a PSTN call to the user's phone and playing an announcement, asking the
* user to press a particular digit to verify the phone number.
*/
public static final VerificationMethod PHONE_CALL = new VerificationMethod("callout");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class VerificationStatus extends EnumDynamic<String, VerificationStatus>
/** The verification was successful. */
public static final VerificationStatus SUCCESSFUL = new VerificationStatus("SUCCESSFUL");

/** The verification attempt was made, but the number wasn&#39;t verified. */
/** The verification attempt was made, but the number wasn't verified. */
public static final VerificationStatus FAIL = new VerificationStatus("FAIL");

/** The verification attempt was denied by Sinch or your backend. */
Expand All @@ -24,8 +24,7 @@ public class VerificationStatus extends EnumDynamic<String, VerificationStatus>
public static final VerificationStatus ABORTED = new VerificationStatus("ABORTED");

/**
* The verification couldn&#39;t be completed due to a network error or the number being
* unreachable.
* The verification couldn't be completed due to a network error or the number being unreachable.
*/
public static final VerificationStatus ERROR = new VerificationStatus("ERROR");

Expand Down

0 comments on commit 6ddc96d

Please sign in to comment.