Skip to content

Commit c34ad9e

Browse files
committed
Fix tiny typo
1 parent 9f42f81 commit c34ad9e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/backblaze/erasure/Galois.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public final class Galois {
9797
* to members of the field. There is no entry for 255
9898
* because the highest log is 254.
9999
*
100-
* This table was generated by java_tables.py
100+
* This table was generated by java_tables.py.
101101
*/
102102

103103
static final byte [] EXP_TABLE = new byte [] {
@@ -194,7 +194,7 @@ public static byte subtract(byte a, byte b) {
194194
}
195195

196196
/**
197-
* Multiplies to elements of the field.
197+
* Multiplies two elements of the field.
198198
*/
199199
public static byte multiply(byte a, byte b) {
200200
if (a == 0 || b == 0) {

0 commit comments

Comments
 (0)