From 9933121f5ec185158794d2295190ffd0e22640f8 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 18 Oct 2020 01:18:59 +0200 Subject: [PATCH] Fix missing quotes in Code style guidelines C++ code sample --- community/contributing/code_style_guidelines.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/community/contributing/code_style_guidelines.rst b/community/contributing/code_style_guidelines.rst index a2580e0f4..7f554efc8 100644 --- a/community/contributing/code_style_guidelines.rst +++ b/community/contributing/code_style_guidelines.rst @@ -186,7 +186,7 @@ Example: #include "core/hash_map.h" #include "core/list.h" - #include "scene/gui/control.h + #include "scene/gui/control.h" #include @@ -229,7 +229,7 @@ Example: #include "my_new_file.h" #include "core/math/math_funcs.h" - #include "scene/gui/line_edit.h + #include "scene/gui/line_edit.h" #include #include @@ -254,7 +254,7 @@ Blacken your Python changes using `Black `__. Using black locally ~~~~~~~~~~~~~~~~~~~ -First of all, you will need to install black. Black requires Python 3.6.0+ +First of all, you will need to install black. Black requires Python 3.6.0+ to run. Installation