Skip to content

Commit be2bf76

Browse files
Merge pull request #443 from tspiteri/quotes
Curlify more quote marks
2 parents a251e4c + 0bb754a commit be2bf76

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

templates/learn/get-started.hbs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
</header>
7575
<p>Let’s add a dependency to our application. You can find all sorts of libraries on <a href="https://crates.io"
7676
target="_blank" rel="noopener">crates.io</a>, the package registry for Rust. In Rust, we often refer to
77-
packages as "crates".</p>
77+
packages as crates.”</p>
7878
<p>In this project, we’ll use a crate called <a href="https://crates.io/crates/ferris-says" target="_blank" rel="noopener"><code>ferris-says</code></a>.
7979
<p>In our <code>Cargo.toml</code> file we’ll add this information (that we got from the crate page):</p>
8080
<p>
@@ -154,8 +154,8 @@ fn main() {
154154
<div class="highlight"></div>
155155
</header>
156156
<p>Ferris (they/them) is the unofficial mascot of the Rust Community. Rust programmers call themselves
157-
"Rustaceans", which is a play on the word "crustacean", which is a set of creatures, one of which is a crab!</p>
158-
<p>Ferris is a name playing off of the adjective, "ferrous", meaning of or pertaining to iron. Since Rust often
157+
Rustaceans,” which is a play on the word crustacean,” which is set a of creatures, one of which is a crab!</p>
158+
<p>Ferris is a name playing off of the adjective, ferrous,” meaning of or pertaining to iron. Since Rust often
159159
forms on iron, it seemed like a fun origin for our mascot’s name!</p>
160160
<p>You can find more images of Ferris on <a href="http://rustacean.net/" target="_blank" rel="noopener">http://rustacean.net/</a>.
161161
<img alt="a gif of ferris scurrying side to side" src=/static/images/ferris.gif />

templates/tools/install.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
which provides just the Visual C++ build tools. Alternately, you
8585
can <a href="https://www.visualstudio.com/downloads/" target="_blank" rel="noopener">install</a>
8686
Visual Studio 2017, Visual Studio 2015, or Visual Studio 2013 and during install select
87-
the "C++ tools".
87+
the C++ tools.”
8888
</p>
8989
<p>
9090
For further information about configuring Rust on Windows see the

templates/what/cli/maintainable.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
content of that one environment variable is empty? These
1616
cases are easy to forget about! But thanks to its approach
1717
to error handling and its library design, Rust will point
18-
out these "what if" situations before you even run your
18+
out these what if situations before you even run your
1919
program.
2020
</p>
2121
<a href="https://doc.rust-lang.org/book/2018-edition/ch09-00-error-handling.html" target="_blank" rel="noopener" class="button button-secondary">

0 commit comments

Comments
 (0)