From 99bbd43b9966d805b5636e36ca9fd0436ec58ab4 Mon Sep 17 00:00:00 2001 From: Douglas Naphas Date: Fri, 2 Aug 2019 09:42:58 -0400 Subject: [PATCH] Remove outdated rule on single quotes in docs (#3495) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Remove outdated rule on single quotes in docs In PR #1874, a mass replacement of angled single quotes ’ with ASCII single quotes ' was approved. Since then, the docs have contained a mixture of angled and ASCII single quotes: ``` $ git log -S’ --since="Mon Aug 1 16:45:58 2016 -0400" --pretty=oneline | wc -l 17 ``` so it does not make sense to state a rule on them. * Remove typographic stuff we don't use anyways. --- CONTRIBUTING.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 16b40f64463..73c8c1d715e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -70,9 +70,7 @@ npm run test:watch ### Docs -Improvements to the documentation are always welcome. In the docs we abide by typographic rules, so instead of ' you should use '. Same goes for “ ” and dashes (—) where appropriate. These rules only apply to the text, not to code blocks. - -The docs are published automatically when the `master` branch is updated. +Improvements to the documentation are always welcome. You can find them in the [`docs`](/docs) path. We use [Docusaurus](https://docusaurus.io/) to build our documentation website. The website is published automatically whenever the `master` branch is updated. ### Examples