From e1a82714155889e16dd761557fb622476755aede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Tue, 21 Aug 2018 14:21:56 +0200 Subject: Update classdef.cpp --- src/classdef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classdef.cpp b/src/classdef.cpp index 657968e..6ad5534 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -1223,7 +1223,7 @@ void ClassDef::writeInheritanceGraph(OutputList &ol) } } else if (Config_getBool(CLASS_DIAGRAMS) && count>0) - // write class diagram using build-in generator + // write class diagram using built-in generator { ClassDiagram diagram(this); // create a diagram of this class. ol.startClassDiagram(); -- cgit v0.12 From 74f0b492ddd3052c93525fc01d1bc56f8edcb0ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Tue, 21 Aug 2018 14:23:44 +0200 Subject: Update mangen.cpp --- src/mangen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mangen.cpp b/src/mangen.cpp index d23b2fe..949f218 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -34,7 +34,7 @@ static QCString getExtension() { /* - * [.][nuber][rest] + * [.][number][rest] * in case of . missing, just ignore it * in case number missing, just place a 3 in front of it */ -- cgit v0.12 From 5f004ef003993c4a7928a5b6bff8d5a51dceb715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Tue, 21 Aug 2018 14:24:10 +0200 Subject: Update markdown.cpp --- src/markdown.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/markdown.cpp b/src/markdown.cpp index dff64ff..c19d6db 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -406,7 +406,7 @@ static int processEmphasis2(GrowBuf &out, const char *data, int size, char c) return 0; } -/** Parsing tripple emphasis. +/** Parsing triple emphasis. * Finds the first closing tag, and delegates to the other emph */ static int processEmphasis3(GrowBuf &out, const char *data, int size, char c) -- cgit v0.12 From 2863c7e0f3d88cb367ff5ecd79976b169c3322dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Tue, 21 Aug 2018 14:24:46 +0200 Subject: Update pycode.l --- src/pycode.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pycode.l b/src/pycode.l index 1b176d6..dfa383f 100644 --- a/src/pycode.l +++ b/src/pycode.l @@ -1311,7 +1311,7 @@ TARGET ({IDENTIFIER}|"("{TARGET_LIST}")"|"["{TARGET_LIST}"]"|{ATTRIBUT \\. { // espaced char codify(yytext); } - {STRINGPREFIX}?{TRIDOUBLEQUOTE} { // tripple double quotes + {STRINGPREFIX}?{TRIDOUBLEQUOTE} { // triple double quotes codify(yytext); } "'" { // end of the string @@ -1334,7 +1334,7 @@ TARGET ({IDENTIFIER}|"("{TARGET_LIST}")"|"["{TARGET_LIST}"]"|{ATTRIBUT \\. { // espaced char codify(yytext); } - {STRINGPREFIX}?{TRISINGLEQUOTE} { // tripple single quotes + {STRINGPREFIX}?{TRISINGLEQUOTE} { // triple single quotes codify(yytext); } "\"" { // end of the string -- cgit v0.12 From e93792d42eb5aecefc5fba1af431526d02f62070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Tue, 21 Aug 2018 14:25:05 +0200 Subject: Update pyscanner.l --- src/pyscanner.l | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pyscanner.l b/src/pyscanner.l index 4718e3b..2adf632 100644 --- a/src/pyscanner.l +++ b/src/pyscanner.l @@ -1508,7 +1508,7 @@ STARTDOCSYMS "##" \\. { // espaced char addToString(yytext); } - "\"\"\"" { // tripple double quotes + "\"\"\"" { // triple double quotes addToString(yytext); } "'" { // end of the string @@ -1531,7 +1531,7 @@ STARTDOCSYMS "##" \\. { // espaced char addToString(yytext); } - "'''" { // tripple single quotes + "'''" { // triple single quotes addToString(yytext); } "\"" { // end of the string -- cgit v0.12 From 98c9153820df44f1cf3c1990debd5fe99fb7c893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Tue, 21 Aug 2018 14:29:37 +0200 Subject: Update changelog.doc --- doc/changelog.doc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/changelog.doc b/doc/changelog.doc index 0b245b6..3ba6787 100644 --- a/doc/changelog.doc +++ b/doc/changelog.doc @@ -718,7 +718,7 @@
  • Bug 5569 - Fix a potential null pointer dereference in src/searchindex.cpp [view]
  • Bug 5570 - Fix wrong pointer initialization in src/definition.cpp [view]
  • Bug 5571 - Fix potential modulo by zero in src/template.cpp [view]
  • -
  • Bug 5572 - Reached end of file while still insided a (nested) comment in Markdown [view]
  • +
  • Bug 5572 - Reached end of file while still inside a (nested) comment in Markdown [view]
  • Bug 5573 - Fix a terminating null character after fread in src/filedef.cpp [view]
  • Bug 5574 - Remove not needed variable initialization in src/classdef.cpp [view]
  • Bug 5575 - Remove not needed pointer initialization in src/entry.cpp [view]
  • @@ -2803,7 +2803,7 @@ make sure you add the following:
  • id 3190: dropped support for a4wide paper format for LaTeX, since it is on the LaTeX taboo list.
  • id 3261: Behaviour of CLASS_DIAGRAM=NO in combination with - HAVE_DOT=YES, was not propely documented.
  • + HAVE_DOT=YES, was not properly documented.
  • id 3332: Python comments for next class or method could end up in code of a method/class when enabling INLINE_SOURCES.
  • id 3688: Fixed problem handling nested classes in Python.
  • -- cgit v0.12 From fc40fd92baf913aa1a2f2ce6e15244fb1ff15a0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20M=C3=BCller?= <27155134+arm-in@users.noreply.github.com> Date: Thu, 30 Aug 2018 19:06:41 +0200 Subject: Update README.txt --- testing/README.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/testing/README.txt b/testing/README.txt index a5a0ad9..fd7536d 100644 --- a/testing/README.txt +++ b/testing/README.txt @@ -1,4 +1,4 @@ -Doxygen regession test suite +Doxygen regression test suite ============================ This directory contains a set of regression tests. Each test consists of a @@ -7,7 +7,7 @@ has the same 3 digit number. The directory contains one or more reference files that are compared against the XML output produced by doxygen. If the result is the same, there is no regression and the test passes. If there is a difference the test fails and the difference (in diff -u format) will be shown. -It is also possible to see whether or not the test can be build to a xhtml set +It is also possible to see whether or not the test can be built to an xhtml set of files (and tested against a DTD), it is also possible to create a pdf file for each test to see if the LaTeX / pdf generation is possible. @@ -57,4 +57,3 @@ There is also a CMakeLists.txt, which can be used from the build directory to run all tests by simply invoking 'make tests', to use the specific options use the flag TEST_FLAGS with make e.g. make tests TEST_FLAGS="--id=5 --id=10 --pdf --xhtml" - -- cgit v0.12