From a4720a30c602dd343b1619959b4e250e61d7af9d Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 7 Oct 2020 05:51:17 +1100 Subject: [PATCH] docs: fix simple typo, representaion -> representation There is a small typo in slre.c. Should read `representation` rather than `representaion`. --- slre.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slre.c b/slre.c index ab1403c..8a133c1 100644 --- a/slre.c +++ b/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;