about summary refs log tree commit diff
path: root/src/doc/trpl
diff options
context:
space:
mode:
authormidinastasurazz <mpavlovsky@gmail.com>2015-07-27 16:18:50 +0200
committermidinastasurazz <mpavlovsky@gmail.com>2015-07-27 16:18:50 +0200
commit2449823268a886b2faa899ffb794e8396fc02278 (patch)
tree984003268f43e78690373a6de9da542a986bc2ae /src/doc/trpl
parentd019a49ac86322703e1daad0ebca393856185b32 (diff)
downloadrust-2449823268a886b2faa899ffb794e8396fc02278.tar.gz
rust-2449823268a886b2faa899ffb794e8396fc02278.zip
Fix misrendered HTML character entities
Diffstat (limited to 'src/doc/trpl')
-rw-r--r--src/doc/trpl/choosing-your-guarantees.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/trpl/choosing-your-guarantees.md b/src/doc/trpl/choosing-your-guarantees.md
index db28ce6f428..9b1c2a1d7c3 100644
--- a/src/doc/trpl/choosing-your-guarantees.md
+++ b/src/doc/trpl/choosing-your-guarantees.md
@@ -42,7 +42,7 @@ allowed to share references to this by the regular borrowing rules, checked at c
 
 ## `&T` and `&mut T` 
 
-These are immutable and mutable references respectively. They follow the &lquo;read-write lock&rquo;
+These are immutable and mutable references respectively. They follow the &ldquo;read-write lock&rdquo;
 pattern, such that one may either have only one mutable reference to some data, or any number of
 immutable ones, but not both. This guarantee is enforced at compile time, and has no visible cost at
 runtime. In most cases these two pointer types suffice for sharing cheap references between sections
@@ -108,7 +108,7 @@ increment the inner reference count and return a copy of the `Rc<T>`.
 
 # Cell types
 
-&lquo;Cell&rquo;s provide interior mutability. In other words, they contain data which can be manipulated even
+`Cell`s provide interior mutability. In other words, they contain data which can be manipulated even
 if the type cannot be obtained in a mutable form (for example, when it is behind an `&`-ptr or
 `Rc<T>`).