File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/redis/clients/jedis Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public final class Protocol {
3030 public static final byte COMMA_BYTE = ',' ;
3131 public static final byte DOLLAR_BYTE = '$' ;
3232 public static final byte EQUAL_BYTE = '=' ;
33- public static final byte GRATER_THAN_BYTE = '>' ;
33+ public static final byte GREATER_THAN_BYTE = '>' ;
3434 public static final byte HASH_BYTE = '#' ;
3535 public static final byte LEFT_BRACE_BYTE = '(' ;
3636 public static final byte MINUS_BYTE = '-' ;
@@ -160,7 +160,7 @@ private static Object process(final RedisInputStream is) {
160160 num = is .readIntCrLf ();
161161 if (num == -1 ) return null ;
162162 return processMultiBulkReply (num , is );
163- case GRATER_THAN_BYTE :
163+ case GREATER_THAN_BYTE :
164164 num = is .readIntCrLf ();
165165 if (num == -1 ) return null ;
166166 return processMultiBulkReply (num , is );
You can’t perform that action at this time.
0 commit comments