summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-09-16 18:17:20 (GMT)
committerGitHub <noreply@github.com>2019-09-16 18:17:20 (GMT)
commite9af075e2ca5a1178516130bc7ee2ee13634ba5b (patch)
treeabd90b6147b1566064cac2bef64f5321db6e6f6d /src
parent1599f362567b2c430e78d4e57f0f44d5a2f5ae08 (diff)
parent3754d597b8e94e1ed33808457cfd22d2996c15ae (diff)
downloadDoxygen-e9af075e2ca5a1178516130bc7ee2ee13634ba5b.zip
Doxygen-e9af075e2ca5a1178516130bc7ee2ee13634ba5b.tar.gz
Doxygen-e9af075e2ca5a1178516130bc7ee2ee13634ba5b.tar.bz2
Merge pull request #7266 from luzpaz/typos
Fix some typos
Diffstat (limited to 'src')
-rw-r--r--src/cite.cpp2
-rw-r--r--src/markdown.cpp2
-rw-r--r--src/sqlite3gen.cpp4
3 files changed, 4 insertions, 4 deletions
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"