about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-12-20 13:21:23 -0800
committerBrian Anderson <banderson@mozilla.com>2012-12-20 16:32:43 -0800
commitcbddd5ed3417dbdf6849a0ffb579cc2b0284d447 (patch)
tree60473e579763f5dc3afd3b0ff935b96a365b1a12
parent2f615dc9650a84086cce01f7799506b148161ceb (diff)
downloadrust-cbddd5ed3417dbdf6849a0ffb579cc2b0284d447.tar.gz
rust-cbddd5ed3417dbdf6849a0ffb579cc2b0284d447.zip
tutorial: Remove some trivia about operators
-rw-r--r--doc/tutorial.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 48ac8d261d6..38e6c0f107c 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -371,11 +371,6 @@ let y: uint = x as uint;
 assert y == 4u;
 ~~~~
 
-The main difference with C is that `++` and `--` are missing, and that
-the logical bitwise operators have higher precedence—in C, `x & 2 > 0`
-means `x & (2 > 0)`, but in Rust, it means `(x & 2) > 0`, which is
-more likely to be what a novice expects.
-
 ## Syntax extensions
 
 *Syntax extensions* are special forms that are not built into the language,