Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dbb committed Apr 2, 2013
1 parent 0f67a18 commit 87e734a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basic-re-cheat.pl
Expand Up @@ -28,10 +28,10 @@

# Counts
say '"a" zero or more times' if /a*/;
say '"a" one ore more times' if /a+/;
say '"a" one or more times' if /a+/;
say 'optional "a"' if /a?/;

say '"a" exactly 2 times' if /a{2}/;
say '"a" exactly 2 times' if /a{2,2}/;
say '"a" 3 to 4 times' if /a{3,4}/;
say '"a" 5 or more times' if /a{5,}/;

Expand Down

0 comments on commit 87e734a

Please sign in to comment.