manual: "to" -> ".."

This commit is contained in:
Graydon Hoare 2012-10-11 17:15:00 -07:00
parent 515f88f1c1
commit 1d69b81eef

View File

@ -2180,7 +2180,7 @@ match_expr : "match" expr '{' match_arm [ '|' match_arm ] * '}' ;
match_arm : match_pat '=>' expr_or_blockish ;
match_pat : pat [ "to" pat ] ? [ "if" expr ] ;
match_pat : pat [ ".." pat ] ? [ "if" expr ] ;
~~~~~~~~