docs: fix simple typo, representaion -> representation

There is a small typo in slre.c.

Should read `representation` rather than `representaion`.
pull/35/head
Tim Gates 4 years ago
parent 87b37b820a
commit a4720a30c6
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05
  1. 2
      slre.c

@ -126,7 +126,7 @@ static int match_op(const unsigned char *re, const unsigned char *s,
case 'v': FAIL_IF(*s != '\v', SLRE_NO_MATCH); result++; break;
case 'x':
/* Match byte, \xHH where HH is hexadecimal byte representaion */
/* Match byte, \xHH where HH is hexadecimal byte representation */
FAIL_IF(hextoi(re + 2) != *s, SLRE_NO_MATCH);
result++;
break;

Loading…
Cancel
Save