Skip to content

Commit

Permalink
typo fix | nickgl++
Browse files Browse the repository at this point in the history
  • Loading branch information
sergot committed Sep 19, 2014
1 parent 70456f1 commit bc2c7cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/DateTime/Parse.pm6
Expand Up @@ -47,7 +47,7 @@ class DateTime::Parse is DateTime {
}

token month {
'Jan' | 'Feb' | 'Mar' | 'Apr' | 'May' | 'Jun' | 'Jul' | 'Aug' | 'Sep' | 'Oct' | 'Nov' | 'Dev'
'Jan' | 'Feb' | 'Mar' | 'Apr' | 'May' | 'Jun' | 'Jul' | 'Aug' | 'Sep' | 'Oct' | 'Nov' | 'Dec'
}

token D4-year {
Expand Down Expand Up @@ -116,7 +116,7 @@ class DateTime::Parse is DateTime {
}

my %month = Jan => 1, Feb => 2, Mar => 3, Apr => 4, May => 5, Jun => 6,
Jul => 7, Aug => 8, Sep => 9, Oct => 10, Nov => 11, Dev => 12;
Jul => 7, Aug => 8, Sep => 9, Oct => 10, Nov => 11, Dec => 12;
method month($/) {
make %month{~$/}
}
Expand Down

0 comments on commit bc2c7cc

Please sign in to comment.