Fix misrendered HTML character entities

This commit is contained in:
midinastasurazz 2015-07-27 16:18:50 +02:00
parent d019a49ac8
commit 2449823268

View file

@ -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 “read-write lock”
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>`).