about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorClar Charr <clar@charr.xyz>2017-01-02 15:47:00 -0500
committerClar Charr <clar@charr.xyz>2017-01-02 16:29:19 -0500
commit8ffc3e779020808e2437389e0aa559d9b028b061 (patch)
tree4be7571406abfaf672f884cd318b0b25e68a0bb6 /src/doc
parentdf61658c8afc8b24800f5437e0000a99d04ea2b0 (diff)
Reword 'stupid' and 'crazy' in docs.
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/nomicon/atomics.md8
-rw-r--r--src/doc/nomicon/meet-safe-and-unsafe.md2
-rw-r--r--src/doc/nomicon/races.md10
3 files changed, 10 insertions, 10 deletions
diff --git a/src/doc/nomicon/atomics.md b/src/doc/nomicon/atomics.md
index 1efca08abd0..7b4c44ff051 100644
--- a/src/doc/nomicon/atomics.md
+++ b/src/doc/nomicon/atomics.md
@@ -24,10 +24,10 @@ exactly what we said but, you know, fast. Wouldn't that be great?
 
 # Compiler Reordering
 
-Compilers fundamentally want to be able to do all sorts of crazy transformations
-to reduce data dependencies and eliminate dead code. In particular, they may
-radically change the actual order of events, or make events never occur! If we
-write something like
+Compilers fundamentally want to be able to do all sorts of complicated
+transformations to reduce data dependencies and eliminate dead code. In
+particular, they may radically change the actual order of events, or make events
+never occur! If we write something like
 
 ```rust,ignore
 x = 1;
diff --git a/src/doc/nomicon/meet-safe-and-unsafe.md b/src/doc/nomicon/meet-safe-and-unsafe.md
index 978d0518729..15d84fdbf29 100644
--- a/src/doc/nomicon/meet-safe-and-unsafe.md
+++ b/src/doc/nomicon/meet-safe-and-unsafe.md
@@ -22,7 +22,7 @@ Well, Rust *has* a safe programming language. Let's step back a bit.
 Rust can be thought of as being composed of two programming languages: *Safe
 Rust* and *Unsafe Rust*. Safe Rust is For Reals  Totally Safe. Unsafe Rust,
 unsurprisingly, is *not* For Reals Totally Safe.  In fact, Unsafe Rust lets you
-do some really crazy unsafe things.
+do some really, *really* unsafe things.
 
 Safe Rust is the *true* Rust programming language. If all you do is write Safe
 Rust, you will never have to worry about type-safety or memory-safety. You will
diff --git a/src/doc/nomicon/races.md b/src/doc/nomicon/races.md
index f0732cf2656..5145987158a 100644
--- a/src/doc/nomicon/races.md
+++ b/src/doc/nomicon/races.md
@@ -21,11 +21,11 @@ prevent *all* race conditions would be pretty awful to use, if not just
 incorrect.
 
 So it's perfectly "fine" for a Safe Rust program to get deadlocked or do
-something incredibly stupid with incorrect synchronization. Obviously such a
-program isn't very good, but Rust can only hold your hand so far. Still, a
-race condition can't violate memory safety in a Rust program on
-its own. Only in conjunction with some other unsafe code can a race condition
-actually violate memory safety. For instance:
+something nonsensical with incorrect synchronization. Obviously such a program
+isn't very good, but Rust can only hold your hand so far. Still, a race
+condition can't violate memory safety in a Rust program on its own. Only in
+conjunction with some other unsafe code can a race condition actually violate
+memory safety. For instance:
 
 ```rust,no_run
 use std::thread;