From b7ea99e2654d798d4d75a21d0b865930b91b55b0 Mon Sep 17 00:00:00 2001 From: Vineet Kumar Date: Thu, 11 May 2017 15:34:54 -0700 Subject: [PATCH] Fix comma splice. Change a run-on sentence into 2 sentences. --- Coding-guidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Coding-guidelines.md b/Coding-guidelines.md index 6f5571c..edf5a6b 100644 --- a/Coding-guidelines.md +++ b/Coding-guidelines.md @@ -26,7 +26,7 @@ These guidelines are mainly **meant for contributors to the TypeScript project** 4. Within a file, type definitions should come first. ## `null` and `undefined` -1. Use **undefined**, do not use null. +1. Use **undefined**. Do not use null. ## General Assumptions 1. Consider objects like Nodes, Symbols, etc. as immutable outside the component that created them. Do not change them. @@ -84,4 +84,4 @@ For a variety of reasons, we avoid certain constructs, and use some of our own. 3. `function f(x: number, y: string): void { }` 6. Use a single declaration per variable statement
(i.e. use `var x = 1; var y = 2;` over `var x = 1, y = 2;`). 7. `else` goes on a separate line from the closing curly brace. -8. Use 4 spaces per indentation. \ No newline at end of file +8. Use 4 spaces per indentation.