From 995f38694c84fe262efbedf568ba6680eaef486c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 29 Nov 2021 20:08:13 +0100 Subject: [PATCH] fix bugs --- standards/general.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/standards/general.md b/standards/general.md index cea45fd..daa04b2 100644 --- a/standards/general.md +++ b/standards/general.md @@ -49,13 +49,13 @@ Never use spaces between variables and atomic operations (e.g. `!`, `++`, `--`) Don't use whitespace inside ANY parentheses (e.g. functions, loops, conditions, catch, closures). ```js -for (let i = 1; i < 100; ++i) { +for (let i = 1; i < 100; ++i) { ... } ``` ```js -function(para1, para2) { +function(para1, para2) { ... } ``` @@ -200,7 +200,7 @@ All string representations should use single quotes `''` unless `""` provides si Todos should be documented in the [PROJECT.md](https://github.com/Orange-Management/Docs/blob/master/Project/PROJECT.md). -In code todos can be created like this +In code todos can be created like this ```php // @todo: Single line todo @@ -208,8 +208,7 @@ In code todos can be created like this ```php /** - * @todo: - * Multi line todo + * @todo: Multi line todo * This way developers can see todos directly in the code without going to an external source. * Todos must not have empty lines in their descriptions. * If the external ressources have empty lines they must be removed in the todo comment.