-
Notifications
You must be signed in to change notification settings - Fork 300
Curlify more quote marks #443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you could move the quote inside the .
or ,
i will happily merge this! thanks
@@ -74,7 +74,7 @@ | |||
</header> | |||
<p>Let’s add a dependency to our application. You can find all sorts of libraries on <a href="https://crates.io" | |||
target="_blank" rel="noopener">crates.io</a>, the package registry for Rust. In Rust, we often refer to | |||
packages as "crates".</p> | |||
packages as “crates.”</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could we put the quote before the .
- thanks!
templates/learn/get-started.hbs
Outdated
@@ -154,8 +154,8 @@ fn main() { | |||
<div class="highlight"></div> | |||
</header> | |||
<p>Ferris (they/them) is the unofficial mascot of the Rust Community. Rust programmers call themselves | |||
"Rustaceans", which is a play on the word "crustacean", which is set of creatures, one of which is a crab!</p> | |||
<p>Ferris is a name playing off of the adjective, "ferrous", meaning of or pertaining to iron. Since Rust often | |||
“Rustaceans,” which is a play on the word “crustacean,” which is set of creatures, one of which is a crab!</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please put the quotes inside the ,
s - thanks!
"Rustaceans", which is a play on the word "crustacean", which is set of creatures, one of which is a crab!</p> | ||
<p>Ferris is a name playing off of the adjective, "ferrous", meaning of or pertaining to iron. Since Rust often | ||
“Rustaceans,” which is a play on the word “crustacean,” which is set of creatures, one of which is a crab!</p> | ||
<p>Ferris is a name playing off of the adjective, “ferrous,” meaning of or pertaining to iron. Since Rust often |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
quote inside comma, please!
@@ -84,7 +84,7 @@ | |||
which provides just the Visual C++ build tools. Alternately, you | |||
can <a href="https://www.visualstudio.com/downloads/" target="_blank" rel="noopener">install</a> | |||
Visual Studio 2017, Visual Studio 2015, or Visual Studio 2013 and during install select | |||
the "C++ tools". | |||
the “C++ tools.” |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here as well
I had the impression that in American English, commas and periods should always be inside the quotation marks (source, section Quotation Marks with Commas and Periods). So I “fixed” those as I changed straight quotes to curly quotes. In fact I found three already existing instances of this, so if the commas/periods are to be left outside the quotes here, they should be moved outside in these three instances:
Incidentally, in PR #435 I also changed the order for one instance in templates/what/embedded/showcase.hbs; I changed:
to:
Question: Which convention should be used? |
“Commas and periods inside” is the style for all documentation, at least. I don’t know how the website people feel about it.
… On Nov 30, 2018, at 6:37 AM, Trevor Spiteri ***@***.***> wrote:
I had the impression that in American English, commas and periods should always be inside the quotation marks (source, section Quotation Marks with Commas and Periods). So I “fixed” those as I changed straight quotes to curly quotes.
In fact I found three already existing instances of this, so if the commas/periods are to be left outside the quotes here, they should be moved outside in these three instances:
templates/learn/index.hbs: Affectionately nicknamed “the book,” The Rust...
templates/learn/index.hbs: It’s also sometimes called “the ’nomicon.”
templates/policies/code-of-conduct.hbs: ... the user will be “kicked,” i.e., kicked out...
Incidentally, in PR #435 I also changed the order for one instance in templates/what/embedded/showcase.hbs; I changed:
...with the tag line 'safe, fast, concurrent – pick three'.
to:
... with the tag line ‘safe, fast, concurrent – pick three.’
Question: Which convention should be used?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
Ok @tspiteri - sorry about the confusion! Let's stick with what you originally had. |
Curlify some double-quote marks missed in #435.