From 4623d6a8939973651a26cfa9c5758b549b3679d9 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 17 Nov 2018 02:59:20 +0100 Subject: [PATCH] Fixed some grammar --- Coding-Style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Coding-Style.md b/Coding-Style.md index 6b8c771..57021bc 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -14,7 +14,7 @@ We recommend to follow these guidelines when writing code for RPCS3. They aren't * Comment *every* hack you do, *every* snippet you comment out and *every* improvable code. * If you have to comment or place a commented code snippet, include the reasons to do that in the comment. * Don't use `/**/` for commenting out multiple lines. Use `//` on every line instead. In Visual Studio, for example, you can just select desired lines and use `Ctrl+K,C` combination to comment every line with `//`, `Ctrl+K,U` reverts this. -* Ensure that the every source file you modify has the newline at the end of file. Every line ends with "newline" and the end of file must have "newline" too, GitHub usually warns about it. +* Ensure that every source file you modify has the newline at the end of file. Every line ends with "newline" and the end of file must have "newline" too, GitHub usually warns about it. *** ### Emulator coding style