Fix grammar

This commit is contained in:
Manish Goregaokar 2015-02-15 22:20:38 +05:30
parent f0f8be2a2e
commit cea2bbfe27
2 changed files with 2 additions and 2 deletions

View File

@ -568,7 +568,7 @@ binop_expr : expr binop expr ;
The precedence of Rust binary operators is ordered as follows, going from
strong to weak:
```
```text
* / %
as
+ -

View File

@ -439,7 +439,7 @@ fn main() {
unsafe {
rl_prompt = prompt.as_ptr();
println!("{}", rl_prompt);
println!("{:?}", rl_prompt);
rl_prompt = ptr::null();
}