summaryrefslogtreecommitdiffstats
path: root/src
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 /src
parent4fbb61f020a607a96152ba5c00668b9840ea812c (diff)
downloadDoxygen-3754d597b8e94e1ed33808457cfd22d2996c15ae.zip
Doxygen-3754d597b8e94e1ed33808457cfd22d2996c15ae.tar.gz
Doxygen-3754d597b8e94e1ed33808457cfd22d2996c15ae.tar.bz2
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"