summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2019-09-16 11:46:29 (GMT)
committerluz.paz <luzpaz@users.noreply.github.com>2019-09-16 11:46:29 (GMT)
commit3754d597b8e94e1ed33808457cfd22d2996c15ae (patch)
tree44f9ac8375f8bd5d1d152131d691fbf15b28393e
parent4fbb61f020a607a96152ba5c00668b9840ea812c (diff)
downloadDoxygen-3754d597b8e94e1ed33808457cfd22d2996c15ae.zip
Doxygen-3754d597b8e94e1ed33808457cfd22d2996c15ae.tar.gz
Doxygen-3754d597b8e94e1ed33808457cfd22d2996c15ae.tar.bz2
Fix some typos
-rw-r--r--doc/commands.doc4
-rw-r--r--doc/emojisup.doc2
-rw-r--r--doc/preprocessing.doc2
-rw-r--r--src/cite.cpp2
-rw-r--r--src/markdown.cpp2
-rw-r--r--src/sqlite3gen.cpp4
-rw-r--r--templates/html/svgpan.js2
-rwxr-xr-xtemplates/latex/tabu_doxygen.sty6
-rw-r--r--testing/012/indexpage.xml2
-rw-r--r--testing/012_cite.dox2
-rw-r--r--testing/069/069__link__variadic__template_8cpp.xml2
-rw-r--r--testing/069_link_variadic_template.cpp2
-rw-r--r--testing/070/070__ref__variadic__template_8cpp.xml2
-rw-r--r--testing/070_ref_variadic_template.cpp2
-rw-r--r--testing/082_decl_def.cpp2
-rw-r--r--testing/083_decl_def.cpp2
-rw-r--r--testing/086/086__style__tags_8h.xml2
-rw-r--r--testing/086_style_tags.h2
18 files changed, 22 insertions, 22 deletions
diff --git a/doc/commands.doc b/doc/commands.doc
index 59bf874..615e239 100644
--- a/doc/commands.doc
+++ b/doc/commands.doc
@@ -32,7 +32,7 @@ Each argument has a certain range:
Paragraphs are delimited by a blank line or by a section indicator. Note that
{curly} braces are also used for command options, here the braces are mandatory
and just 'normal' characters. The starting curly brace has to directly follow
- the command, so without whitspace.
+ the command, so without whitespace.
</ul>
If in addition to the above argument specifiers [square] brackets are used the argument
is optional, unless they are placed between quotes in that case they are a mandatory
@@ -349,7 +349,7 @@ Structural indicators
\addindex \\showrefby
When this command is put in a comment block of a function, method or variable,
then doxygen will generate an overview for that function, method, variable of
- the, documented, funcions and methods that call / use it.
+ the, documented, functions and methods that call / use it.
The overview will be generated regardless of the value of
\ref cfg_referenced_by_relation "REFERENCED_BY_RELATION".
\note The completeness (and correctness) of the overview depends on the
diff --git a/doc/emojisup.doc b/doc/emojisup.doc
index 4c861fe..0175780 100644
--- a/doc/emojisup.doc
+++ b/doc/emojisup.doc
@@ -108,7 +108,7 @@ By means of the doxygen configuration parameter
For convenience a zip with the result of running the script can also be downloaded from
http://www.doxygen.nl/dl/github_emojis.zip
-For a overview of the supported emoji one can issue the comand:<br>
+For an overview of the supported emoji one can issue the command:<br>
`doxygen -f emoji <outputFileName>`
\htmlonly
diff --git a/doc/preprocessing.doc b/doc/preprocessing.doc
index a49b889..4df83ff 100644
--- a/doc/preprocessing.doc
+++ b/doc/preprocessing.doc
@@ -264,7 +264,7 @@ preprocessing has been done (Hint: set <code>QUIET = YES</code> and
<code>WARNINGS = NO</code> in the configuration file to disable any other
output).
-Note preprocessing is not done for all languages. Preprocesing is enabled for files
+Note preprocessing is not done for all languages. Preprocessing is enabled for files
that use the "C" scanner (with the exception of 'java', 'd' and 'php'), Fortran files
(only in case the extension contains at least one upper case character) and vhdl files.
diff --git a/src/cite.cpp b/src/cite.cpp
index fd7b0e4..a36f62c 100644
--- a/src/cite.cpp
+++ b/src/cite.cpp
@@ -151,7 +151,7 @@ void CiteDict::generatePage() const
p=s+1;
int i;
- if ((i = line.find("crossref")) != -1) /* assumption crosreference is on one line and the only item */
+ if ((i = line.find("crossref")) != -1) /* assumption crossreference is on one line and the only item */
{
int j=line.find("{",i);
int k=line.find("}",i);
diff --git a/src/markdown.cpp b/src/markdown.cpp
index 2cbdcb5..6fea0a6 100644
--- a/src/markdown.cpp
+++ b/src/markdown.cpp
@@ -2064,7 +2064,7 @@ static int writeCodeBlock(GrowBuf &out,const char *data,int size,int refIndent)
emptyLines++;
i=end;
}
- else if (indent>=refIndent+codeBlockIndent) // enough indent to contine the code block
+ else if (indent>=refIndent+codeBlockIndent) // enough indent to continue the code block
{
while (emptyLines>0) // write skipped empty lines
{
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp
index 012a0c0..49818b2 100644
--- a/src/sqlite3gen.cpp
+++ b/src/sqlite3gen.cpp
@@ -127,7 +127,7 @@ const char * table_schema[][2] = {
* I rolled this back when I had trouble getting a FileDef for all types
* (PageDef in particular).
*
- * Note: all colums referencing path would need an update.
+ * Note: all columns referencing path would need an update.
*/
{ "path",
"CREATE TABLE IF NOT EXISTS path (\n"
@@ -233,7 +233,7 @@ const char * table_schema[][2] = {
},
{ "reimplements",
"CREATE TABLE IF NOT EXISTS reimplements (\n"
- "\t-- Inherited member reimplmentation relations.\n"
+ "\t-- Inherited member reimplementation relations.\n"
"\trowid INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,\n"
"\tmemberdef_rowid INTEGER NOT NULL REFERENCES memberdef, -- reimplementing memberdef id.\n"
"\treimplemented_rowid INTEGER NOT NULL REFERENCES memberdef, -- reimplemented memberdef id.\n"
diff --git a/templates/html/svgpan.js b/templates/html/svgpan.js
index 1fc1544..1cad257 100644
--- a/templates/html/svgpan.js
+++ b/templates/html/svgpan.js
@@ -23,7 +23,7 @@
*/
/**
* The code below is based on SVGPan Library 1.2 and was modified for doxygen
- * to support both zooming and panning via the mouse and via embedded bottons.
+ * to support both zooming and panning via the mouse and via embedded buttons.
*
* This code is licensed under the following BSD license:
*
diff --git a/templates/latex/tabu_doxygen.sty b/templates/latex/tabu_doxygen.sty
index f760aca..3efcaf3 100755
--- a/templates/latex/tabu_doxygen.sty
+++ b/templates/latex/tabu_doxygen.sty
@@ -18,7 +18,7 @@
%%
%% tabu works in text and in math modes.
%%
-%% X columns: automatic width ajustment + horizontal and vertical alignment
+%% X columns: automatic width adjustment + horizontal and vertical alignment
%% \begin{tabu} { X[4c] X[1c] X[-2ml] }
%%
%% Horizontal lines and / or leaders:
@@ -2043,7 +2043,7 @@
\newcommand*\savetabu[1]{\noalign{%
\tabu@sanitizearg{#1}\tabu@temp
\ifx \tabu@temp\@empty \tabu@savewarn{}{The tabu will not be saved}\else
- \@ifundefined{tabu@saved@\tabu@temp}{}{\tabu@savewarn{#1}{Overwritting}}%
+ \@ifundefined{tabu@saved@\tabu@temp}{}{\tabu@savewarn{#1}{Overwriting}}%
\ifdefined\tabu@restored \expandafter\let
\csname tabu@saved@\tabu@temp \endcsname \tabu@restored
\else {\tabu@save}%
@@ -2523,7 +2523,7 @@
Package cellspace has some limitations
\MessageBreak And redefines some macros of array.sty.
\MessageBreak Please use \string\tabulinesep\space to control
- \MessageBreak vertical spacing of lines inside tabu environnement}%
+ \MessageBreak vertical spacing of lines inside tabu environment}%
}% \tabu@warn@cellspace
%% tabu Package initialisation
\tabuscantokensfalse
diff --git a/testing/012/indexpage.xml b/testing/012/indexpage.xml
index 227e52c..c0d96e7 100644
--- a/testing/012/indexpage.xml
+++ b/testing/012/indexpage.xml
@@ -7,7 +7,7 @@
</briefdescription>
<detaileddescription>
<para>See <ref refid="citelist_1CITEREF_knuth79" kindref="member">[3]</ref> for more info.</para>
- <para>Oter references with crosreference see <ref refid="citelist_1CITEREF_Be09" kindref="member">[1]</ref> and <ref refid="citelist_1CITEREF_BertholdHeinzVigerske2009" kindref="member">[2]</ref> for more info. </para>
+ <para>Other references with crossreference see <ref refid="citelist_1CITEREF_Be09" kindref="member">[1]</ref> and <ref refid="citelist_1CITEREF_BertholdHeinzVigerske2009" kindref="member">[2]</ref> for more info. </para>
</detaileddescription>
</compounddef>
</doxygen>
diff --git a/testing/012_cite.dox b/testing/012_cite.dox
index 4b5e40d..2e022de 100644
--- a/testing/012_cite.dox
+++ b/testing/012_cite.dox
@@ -5,5 +5,5 @@
/** \mainpage
* See \cite knuth79 for more info.
*
- * Oter references with crosreference see \cite Be09 and \cite BertholdHeinzVigerske2009 for more info.
+ * Other references with crossreference see \cite Be09 and \cite BertholdHeinzVigerske2009 for more info.
*/
diff --git a/testing/069/069__link__variadic__template_8cpp.xml b/testing/069/069__link__variadic__template_8cpp.xml
index 08c3667..02cffe1 100644
--- a/testing/069/069__link__variadic__template_8cpp.xml
+++ b/testing/069/069__link__variadic__template_8cpp.xml
@@ -301,7 +301,7 @@
<ref refid="class_test_1a64d85df31d518e39726467315a9b05e3" kindref="member">variadic template method</ref>
</para>
<para>Links to the variadic template function overloads: <itemizedlist><listitem><para><ref refid="069__link__variadic__template_8cpp_1aa7e4936a17759246bce60256cf224e16" kindref="member">First overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1ad6fc2d2a6cb8980f3e0eaacbd2ae41fe" kindref="member">Second overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">Third overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1aed64c596fea5f4f5e719006539922f7c" kindref="member">Fourth overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a0ad18d95a1dc2dbacee657c43f719187" kindref="member">Fifth overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a2331eedd0a1db9da5de0ad0faef78a4e" kindref="member">Sixth overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a72bd94e61df947347f98a2a6214e9342" kindref="member">Seventh overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a0bd03c39aa36ae51d2b8d87e04cf7eab" kindref="member">Eighth overload</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1abb1e0338f72ae46a1240ada65d6a397c" kindref="member">Ninth overload</ref></para></listitem></itemizedlist>
-The followings are interpreted the same: <itemizedlist><listitem><para><ref refid="069__link__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">without template argument</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">with template argument</ref></para></listitem></itemizedlist>
+The following are interpreted the same: <itemizedlist><listitem><para><ref refid="069__link__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">without template argument</ref></para></listitem><listitem><para><ref refid="069__link__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">with template argument</ref></para></listitem></itemizedlist>
See the <ref refid="class_test" kindref="compound">test</ref> class. </para>
</detaileddescription>
<location file="069_link_variadic_template.cpp"/>
diff --git a/testing/069_link_variadic_template.cpp b/testing/069_link_variadic_template.cpp
index 89ab57c..fa4a08b 100644
--- a/testing/069_link_variadic_template.cpp
+++ b/testing/069_link_variadic_template.cpp
@@ -28,7 +28,7 @@
* @li \link func(int,const Args**... args) Eighth overload\endlink
* @li \link func(int,Args...) Ninth overload\endlink
*
- * The followings are interpreted the same:
+ * The following are interpreted the same:
* @li \link func(int,const Args&... args) without template argument\endlink
* @li \link func<Args...>(int,const Args&... args) with template argument\endlink
*
diff --git a/testing/070/070__ref__variadic__template_8cpp.xml b/testing/070/070__ref__variadic__template_8cpp.xml
index cebe079..828319c 100644
--- a/testing/070/070__ref__variadic__template_8cpp.xml
+++ b/testing/070/070__ref__variadic__template_8cpp.xml
@@ -301,7 +301,7 @@
<ref refid="class_test_1a64d85df31d518e39726467315a9b05e3" kindref="member">variadic template method</ref>
</para>
<para>References to the variadic template function overloads: <itemizedlist><listitem><para><ref refid="070__ref__variadic__template_8cpp_1aa7e4936a17759246bce60256cf224e16" kindref="member">First overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1ad6fc2d2a6cb8980f3e0eaacbd2ae41fe" kindref="member">Second overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">Third overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1aed64c596fea5f4f5e719006539922f7c" kindref="member">Fourth overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a0ad18d95a1dc2dbacee657c43f719187" kindref="member">Fifth overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a2331eedd0a1db9da5de0ad0faef78a4e" kindref="member">Sixth overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a72bd94e61df947347f98a2a6214e9342" kindref="member">Seventh overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a0bd03c39aa36ae51d2b8d87e04cf7eab" kindref="member">Eighth overload</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1abb1e0338f72ae46a1240ada65d6a397c" kindref="member">Ninth overload</ref></para></listitem></itemizedlist>
-The followings are interpreted the same: <itemizedlist><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">without template argument</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">with template argument</ref></para></listitem></itemizedlist>
+The following are interpreted the same: <itemizedlist><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">without template argument</ref></para></listitem><listitem><para><ref refid="070__ref__variadic__template_8cpp_1a708a5bf22646ed7233fe61b83182811a" kindref="member">with template argument</ref></para></listitem></itemizedlist>
See the <ref refid="class_test" kindref="compound">test</ref> class. </para>
</detaileddescription>
<location file="070_ref_variadic_template.cpp"/>
diff --git a/testing/070_ref_variadic_template.cpp b/testing/070_ref_variadic_template.cpp
index 376cebe..fa558b7 100644
--- a/testing/070_ref_variadic_template.cpp
+++ b/testing/070_ref_variadic_template.cpp
@@ -28,7 +28,7 @@
* @li \ref func(int,const Args**... args) "Eighth overload"
* @li \ref func(int,Args...) "Ninth overload"
*
- * The followings are interpreted the same:
+ * The following are interpreted the same:
* @li \ref func(int,const Args&... args) "without template argument"
* @li \ref func<Args...>(int,const Args&... args) "with template argument"
*
diff --git a/testing/082_decl_def.cpp b/testing/082_decl_def.cpp
index ef57836..6dbc3c5 100644
--- a/testing/082_decl_def.cpp
+++ b/testing/082_decl_def.cpp
@@ -1,4 +1,4 @@
-// objective: test for declation and definition order independence: decl first
+// objective: test for declaration and definition order independence: decl first
// check: namespace_n.xml
// config: INPUT = $INPUTDIR/decl_def.h $INPUTDIR/082_decl_def.cpp
#include "test.h"
diff --git a/testing/083_decl_def.cpp b/testing/083_decl_def.cpp
index 1241be6..64efc3e 100644
--- a/testing/083_decl_def.cpp
+++ b/testing/083_decl_def.cpp
@@ -1,4 +1,4 @@
-// objective: test for declation and definition order independence: def first
+// objective: test for declaration and definition order independence: def first
// check: namespace_n.xml
// config: INPUT = $INPUTDIR/083_decl_def.cpp $INPUTDIR/decl_def.h
#include "test.h"
diff --git a/testing/086/086__style__tags_8h.xml b/testing/086/086__style__tags_8h.xml
index a1803da..0d0b73d 100644
--- a/testing/086/086__style__tags_8h.xml
+++ b/testing/086/086__style__tags_8h.xml
@@ -5,7 +5,7 @@
<briefdescription>
</briefdescription>
<detaileddescription>
- <para>In the following the word tag has the style as indicated before it.<itemizedlist><listitem><para>This is a bold <bold>tag</bold>.</para></listitem><listitem><para>This is a <computeroutput>strong</computeroutput> bold <bold>tag</bold>.</para></listitem><listitem><para>This is an italic <emphasis>tag</emphasis>.</para></listitem><listitem><para>This is an <computeroutput>em</computeroutput> italic <emphasis>tag</emphasis>.</para></listitem><listitem><para>This is a strike through <strike>tag</strike>.</para></listitem><listitem><para>This is an underline <underline>tag</underline>.</para></listitem><listitem><para>This is an insterted <ins>tag</ins>.</para></listitem><listitem><para>This is a deleted <del>tag</del>.</para></listitem><listitem><para>This is a typewriter <computeroutput>tag</computeroutput>. </para></listitem></itemizedlist>
+ <para>In the following the word tag has the style as indicated before it.<itemizedlist><listitem><para>This is a bold <bold>tag</bold>.</para></listitem><listitem><para>This is a <computeroutput>strong</computeroutput> bold <bold>tag</bold>.</para></listitem><listitem><para>This is an italic <emphasis>tag</emphasis>.</para></listitem><listitem><para>This is an <computeroutput>em</computeroutput> italic <emphasis>tag</emphasis>.</para></listitem><listitem><para>This is a strike through <strike>tag</strike>.</para></listitem><listitem><para>This is an underline <underline>tag</underline>.</para></listitem><listitem><para>This is an inserted <ins>tag</ins>.</para></listitem><listitem><para>This is a deleted <del>tag</del>.</para></listitem><listitem><para>This is a typewriter <computeroutput>tag</computeroutput>. </para></listitem></itemizedlist>
</para>
</detaileddescription>
<location file="086_style_tags.h"/>
diff --git a/testing/086_style_tags.h b/testing/086_style_tags.h
index 105adca..7157d4e 100644
--- a/testing/086_style_tags.h
+++ b/testing/086_style_tags.h
@@ -10,7 +10,7 @@ In the following the word tag has the style as indicated before it.
- This is an `em` italic <em>tag</em>.
- This is a strike through <strike>tag</strike>.
- This is an underline <u>tag</u>.
-- This is an insterted <ins>tag</ins>.
+- This is an inserted <ins>tag</ins>.
- This is a deleted <del>tag</del>.
- This is a typewriter <tt>tag</tt>.
*/