commit | 06bb23da79cdeb7f66c6d686966ec7d55c0fdfcc | [log] [tgz] |
---|---|---|
author | nift4 <nift4@protonmail.com> | Sun Jan 15 12:55:29 2023 +0100 |
committer | nift4 <nift4@protonmail.com> | Sun Jan 15 12:55:29 2023 +0100 |
tree | d8edbcf2b46e96d6841a5c22ca3e200ad705264c | |
parent | f8fa8e67e6c9034498ba027f2e640f81e4e177a2 [diff] |
fix typo
diff --git a/FaceShared/src/main/java/com/libremobileos/yifan/face/FaceScanner.java b/FaceShared/src/main/java/com/libremobileos/yifan/face/FaceScanner.java index 1f11e3a..272c499 100644 --- a/FaceShared/src/main/java/com/libremobileos/yifan/face/FaceScanner.java +++ b/FaceShared/src/main/java/com/libremobileos/yifan/face/FaceScanner.java
@@ -246,7 +246,7 @@ /** * Test if the face has already been recognized (if {@link #addRecognitionData(String, float)} has been called) - * @return equivalent of <code>getDistance() < Float.MAX_VALUE</code> + * @return equivalent of {@code getDistance() < Float.MAX_VALUE} */ public boolean isRecognized() { return getDistance() < Float.MAX_VALUE;