doc: Abbreviate Thursday as 'th', not 'do'

This commit is contained in:
Brian Anderson 2012-04-02 14:17:33 -07:00
parent bcb9269d84
commit d0268cbe5f

View file

@ -919,7 +919,7 @@ for the parameter list, as in `{|| ...}`.
Partial application is done using the `bind` keyword in Rust.
~~~~
let daynum = bind vec::position_elem(["mo", "tu", "we", "do",
let daynum = bind vec::position_elem(["mo", "tu", "we", "th",
"fr", "sa", "su"], _);
~~~~