stdlib: Fix type in docs for result::chan

This commit is contained in:
Brian Anderson 2011-10-29 20:16:44 -07:00
parent ce1be4d9a9
commit 8befdd08a3

View File

@ -98,7 +98,7 @@ This function can be used to compose the results of two functions.
Example:
> let res = chain(read_file(file), { |buf]
> let res = chain(read_file(file), { |buf|
> ok(parse_buf(buf))
> })