From 468e5cc202bf80e8217a08e99c630b9eae6666bb Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Tue, 6 Sep 2016 17:07:14 -0400 Subject: [PATCH] Update style-guide.md --- style-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style-guide.md b/style-guide.md index 3dddb65..5667781 100644 --- a/style-guide.md +++ b/style-guide.md @@ -6,8 +6,8 @@ Number` rather than `## Generating a secret number`. * Prefer italics over single quotes when calling out a term, ex: `is an *associated function* of` rather than `is an ‘associated function’ of`. -* When talking about a method in prose, include the parentheses, ex: - `read_line()` rather than `read_line`. +* When talking about a method in prose, DO NOT include the parentheses, ex: + `read_line` rather than `read_line()`. * Hard wrap at 80 chars * Prefer not mixing code and not-code in one word, ex: ``Remember when we wrote `use std::io`?`` rather than ``Remember when we `use`d `std::io`?``