Skip to content

Commit bb2624e

Browse files
committed
---
yaml --- r: 16007 b: refs/heads/try c: 353cda5 h: refs/heads/master i: 16005: fccef31 16003: f21ca11 15999: 5ba5733 v: v3
1 parent de6298c commit bb2624e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 8678baab12dcdac3286d882b2ab83b50ab451248
5+
refs/heads/try: 353cda5c86e765806c8acc11c4171058ae32e0e8
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/doc/tutorial.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -461,11 +461,11 @@ Thus, binary arithmetic is done with `*`, `/`, `%`, `+`, and `-`
461461
operator (there are no unary postfix operators in Rust) that does
462462
negation.
463463

464-
Binary shifting is done with `>>` (shift right), `>>>` (arithmetic
465-
shift right), and `<<` (shift left). Logical bitwise operators are
466-
`&`, `|`, and `^` (and, or, and exclusive or), and unary `!` for
467-
bitwise negation (or boolean negation when applied to a boolean
468-
value).
464+
Binary shifting is done with `>>` (shift right), and `<<` (shift
465+
left). Shift right is arithmetic if the value is signed and logical if
466+
the value is unsigned. Logical bitwise operators are `&`, `|`, and `^`
467+
(and, or, and exclusive or), and unary `!` for bitwise negation (or
468+
boolean negation when applied to a boolean value).
469469

470470
The comparison operators are the traditional `==`, `!=`, `<`, `>`,
471471
`<=`, and `>=`. Short-circuiting (lazy) boolean operators are written

0 commit comments

Comments
 (0)