Skip to content

Commit 9f93d67

Browse files
authored
Merge pull request godotengine#8516 from AThousandShips/copyright_fix
Fix copyright header in code style guidelines
2 parents 705d994 + df9bed0 commit 9f93d67

File tree

1 file changed

+58
-58
lines changed

1 file changed

+58
-58
lines changed

contributing/development/code_style_guidelines.rst

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -160,35 +160,35 @@ Example:
160160

161161
.. code-block:: cpp
162162
163-
/*************************************************************************/
164-
/* my_new_file.h */
165-
/*************************************************************************/
166-
/* This file is part of: */
167-
/* GODOT ENGINE */
168-
/* https://godotengine.org */
169-
/*************************************************************************/
170-
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
171-
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
172-
/* */
173-
/* Permission is hereby granted, free of charge, to any person obtaining */
174-
/* a copy of this software and associated documentation files (the */
175-
/* "Software"), to deal in the Software without restriction, including */
176-
/* without limitation the rights to use, copy, modify, merge, publish, */
177-
/* distribute, sublicense, and/or sell copies of the Software, and to */
178-
/* permit persons to whom the Software is furnished to do so, subject to */
179-
/* the following conditions: */
180-
/* */
181-
/* The above copyright notice and this permission notice shall be */
182-
/* included in all copies or substantial portions of the Software. */
183-
/* */
184-
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
185-
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
186-
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
187-
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
188-
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
189-
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
190-
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
191-
/*************************************************************************/
163+
/**************************************************************************/
164+
/* my_new_file.h */
165+
/**************************************************************************/
166+
/* This file is part of: */
167+
/* GODOT ENGINE */
168+
/* https://godotengine.org */
169+
/**************************************************************************/
170+
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
171+
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
172+
/* */
173+
/* Permission is hereby granted, free of charge, to any person obtaining */
174+
/* a copy of this software and associated documentation files (the */
175+
/* "Software"), to deal in the Software without restriction, including */
176+
/* without limitation the rights to use, copy, modify, merge, publish, */
177+
/* distribute, sublicense, and/or sell copies of the Software, and to */
178+
/* permit persons to whom the Software is furnished to do so, subject to */
179+
/* the following conditions: */
180+
/* */
181+
/* The above copyright notice and this permission notice shall be */
182+
/* included in all copies or substantial portions of the Software. */
183+
/* */
184+
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
185+
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
186+
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
187+
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
188+
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
189+
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
190+
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
191+
/**************************************************************************/
192192
193193
#ifndef MY_NEW_FILE_H
194194
#define MY_NEW_FILE_H
@@ -205,35 +205,35 @@ Example:
205205
206206
.. code-block:: cpp
207207
208-
/*************************************************************************/
209-
/* my_new_file.cpp */
210-
/*************************************************************************/
211-
/* This file is part of: */
212-
/* GODOT ENGINE */
213-
/* https://godotengine.org */
214-
/*************************************************************************/
215-
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
216-
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
217-
/* */
218-
/* Permission is hereby granted, free of charge, to any person obtaining */
219-
/* a copy of this software and associated documentation files (the */
220-
/* "Software"), to deal in the Software without restriction, including */
221-
/* without limitation the rights to use, copy, modify, merge, publish, */
222-
/* distribute, sublicense, and/or sell copies of the Software, and to */
223-
/* permit persons to whom the Software is furnished to do so, subject to */
224-
/* the following conditions: */
225-
/* */
226-
/* The above copyright notice and this permission notice shall be */
227-
/* included in all copies or substantial portions of the Software. */
228-
/* */
229-
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
230-
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
231-
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
232-
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
233-
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
234-
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
235-
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
236-
/*************************************************************************/
208+
/**************************************************************************/
209+
/* my_new_file.cpp */
210+
/**************************************************************************/
211+
/* This file is part of: */
212+
/* GODOT ENGINE */
213+
/* https://godotengine.org */
214+
/**************************************************************************/
215+
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
216+
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
217+
/* */
218+
/* Permission is hereby granted, free of charge, to any person obtaining */
219+
/* a copy of this software and associated documentation files (the */
220+
/* "Software"), to deal in the Software without restriction, including */
221+
/* without limitation the rights to use, copy, modify, merge, publish, */
222+
/* distribute, sublicense, and/or sell copies of the Software, and to */
223+
/* permit persons to whom the Software is furnished to do so, subject to */
224+
/* the following conditions: */
225+
/* */
226+
/* The above copyright notice and this permission notice shall be */
227+
/* included in all copies or substantial portions of the Software. */
228+
/* */
229+
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
230+
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
231+
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
232+
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
233+
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
234+
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
235+
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
236+
/**************************************************************************/
237237
238238
#include "my_new_file.h"
239239

0 commit comments

Comments
 (0)