Skip to content

Commit 14888da

Browse files
committed
---
yaml --- r: 128929 b: refs/heads/try c: c88feff h: refs/heads/master i: 128927: 7e009a5 v: v3
1 parent 7a2f19d commit 14888da

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 07d86b46a949a94223da714e35b343243e4ecce4
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a86d9ad15e339ab343a12513f9c90556f677b9ca
5-
refs/heads/try: f8a9211740561b1e177e5e36c1b1a6ce923492e8
5+
refs/heads/try: c88feffde4f5043adf07a6837026f228e20b67e6
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/doc/guide.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1894,7 +1894,8 @@ Also, you may wonder why we are using `%` on the result of `rand::random()`.
18941894
This operator is called 'modulo', and it returns the remainder of a division.
18951895
By taking the modulo of the result of `rand::random()`, we're limiting the
18961896
values to be between 0 and 99. Then, we add one to the result, making it from 1
1897-
to 100.
1897+
to 100. Using modulo can give you a very, very small bias in the result, but
1898+
for this example, it is not important.
18981899

18991900
Let's try to compile this using `cargo build`:
19001901

0 commit comments

Comments
 (0)