Browse Source

Merge pull request #4285 from Calinou/code-style-guidelines-fix-missing-quotes

Fix missing quotes in Code style guidelines C++ code sample
Nathan Lovato 4 years ago
parent
commit
d40ace7f6c
1 changed files with 3 additions and 3 deletions
  1. 3 3
      community/contributing/code_style_guidelines.rst

+ 3 - 3
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 <png.h>
 
@@ -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 <zlib.h>
     #include <zstd.h>
@@ -254,7 +254,7 @@ Blacken your Python changes using `Black <https://pypi.org/project/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