We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0f8be2 commit cea2bbfCopy full SHA for cea2bbf
src/doc/grammar.md
@@ -568,7 +568,7 @@ binop_expr : expr binop expr ;
568
The precedence of Rust binary operators is ordered as follows, going from
569
strong to weak:
570
571
-```
+```text
572
* / %
573
as
574
+ -
src/doc/trpl/ffi.md
@@ -439,7 +439,7 @@ fn main() {
439
unsafe {
440
rl_prompt = prompt.as_ptr();
441
442
- println!("{}", rl_prompt);
+ println!("{:?}", rl_prompt);
443
444
rl_prompt = ptr::null();
445
}
0 commit comments