diff options
author | Gilles Roudiere <gilles.roudiere@gmail.com> | 2017-10-09 11:36:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-09 11:36:33 +0200 |
commit | 9e909101424bbf2a7a6896596d039d8572d19e4d (patch) | |
tree | f7bb696b6f18096a07656ad9b47c7ca5293e53d0 /core | |
parent | 2e0c7bb22a7b015c6aa2cd7c2c499ea6277e0ca4 (diff) | |
parent | 80b15fba1d20a71e93546ed778443534bdda6f7a (diff) |
Merge pull request #11962 from touilleMan/fix-trailing-whitespace-in-project.godot
Fix trailing whitespaces in project settings header comment
Diffstat (limited to 'core')
-rw-r--r-- | core/project_settings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp index ff2be87b07..3994011c06 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -667,8 +667,8 @@ Error ProjectSettings::_save_settings_text(const String &p_file, const Map<Strin file->store_line("; Engine configuration file."); file->store_line("; It's best edited using the editor UI and not directly,"); file->store_line("; since the parameters that go here are not all obvious."); - file->store_line("; "); - file->store_line("; Format: "); + file->store_line(";"); + file->store_line("; Format:"); file->store_line("; [section] ; section goes between []"); file->store_line("; param=value ; assign values to parameters"); file->store_line(""); |