diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2018-04-22 19:36:01 +0200 |
---|---|---|
committer | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-04-22 19:36:01 +0200 |
commit | 1c419531a009f48aa074f9b5f93b98d387c33723 (patch) | |
tree | 6beff4f51161e61e22b70266b5e0385496e35b6b /main | |
parent | ca25f1e6eae9ffd498ddba05f94e341827269fea (diff) |
Change ".." punctuation for "..." in editor strings (#16507)
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/main.cpp b/main/main.cpp index 29da47fe8f..3542133719 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -1312,7 +1312,7 @@ bool Main::start() { DocData docsrc; Map<String, String> doc_data_classes; Set<String> checked_paths; - print_line("Loading docs.."); + print_line("Loading docs..."); for (int i = 0; i < _doc_data_class_path_count; i++) { String path = doc_tool.plus_file(_doc_data_class_paths[i].path); @@ -1330,14 +1330,14 @@ bool Main::start() { checked_paths.insert(index_path); print_line("Loading docs from: " + index_path); - print_line("Merging docs.."); + print_line("Merging docs..."); doc.merge_from(docsrc); for (Set<String>::Element *E = checked_paths.front(); E; E = E->next()) { print_line("Erasing old docs at: " + E->get()); DocData::erase_classes(E->get()); } - print_line("Generating new docs.."); + print_line("Generating new docs..."); doc.save_classes(index_path, doc_data_classes); return false; |