Skip to content

Commit

Permalink
regcomp.c: Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
khwilliamson committed Jan 25, 2018
1 parent 1a9ff13 commit a1bb8e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion regcomp.c
Expand Up @@ -17400,7 +17400,7 @@ S_regclass(pTHX_ RExC_state_t *pRExC_state, I32 *flagp, U32 depth,
goto join_posix;
}
#endif
/* (named_class - ANY_OF_ASCII) is 0 or 1. xor'ing with
/* (named_class - ANYOF_ASCII) is 0 or 1. xor'ing with
* invert converts that to 1 or 0 */
op = ASCII + ((namedclass - ANYOF_ASCII) ^ invert);
break;
Expand Down

0 comments on commit a1bb8e7

Please sign in to comment.