This commit is contained in:
Graydon Hoare 2010-07-13 14:22:33 -07:00
parent c3945da2e4
commit 02bdc27f5a
1 changed files with 1 additions and 1 deletions

View File

@ -3033,7 +3033,7 @@ fn read_file_lines(&str path) -> vec[str] @{
note path;
vec[str] r;
file f = open_read(path);
for* (str &s = lines(f)) @{
for each (str &s = lines(f)) @{
vec.append(r,s);
@}
ret r;