From 41783d8939cef1ed4d2bbba0a8aee21f97bcb029 Mon Sep 17 00:00:00 2001 From: Andrew Henry Date: Fri, 11 Dec 2020 15:13:51 -0800 Subject: [PATCH] Fixed minor issues in Code Guidelines (#3596) There was a missing semi-colon in a code example (oops!) and incorrect capitalization of the `const` keyword (overzealous word processor). --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 77506207c4..8b022fb7c5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -182,7 +182,7 @@ The following guidelines are provided for anyone contributing source code to the 1. Avoid the use of "magic" values. eg. ```JavaScript - Const UNAUTHORIZED = 401 + const UNAUTHORIZED = 401; if (responseCode === UNAUTHORIZED) ``` is preferable to