Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
some doxy typos and some misc. source typos
typos

some doxy typos and some misc. source typos
  • Loading branch information
luzpaz committed Mar 5, 2017
1 parent 82ed99b commit 5711b54
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/config.xml
Expand Up @@ -747,7 +747,7 @@ Go to the <a href="commands.html">next</a> section or return to the
</docs> </docs>
</option> </option>
<option type='int' id='LOOKUP_CACHE_SIZE' minval='0' maxval='9' defval='0'> <option type='int' id='LOOKUP_CACHE_SIZE' minval='0' maxval='9' defval='0'>
<!-- be carefull when changing these formulas as they are hard coded in the conversion script --> <!-- be careful when changing these formulas as they are hard coded in the conversion script -->
<docs> <docs>
<![CDATA[ <![CDATA[
The size of the symbol lookup cache can be The size of the symbol lookup cache can be
Expand Down
2 changes: 1 addition & 1 deletion src/definition.cpp
Expand Up @@ -1109,7 +1109,7 @@ void Definition::writeInlineCode(OutputList &ol,const char *scopeName)
actualStart,actualEnd,codeFragment) actualStart,actualEnd,codeFragment)
) )
{ {
//printf("Adding code fragement '%s' ext='%s'\n", //printf("Adding code fragment '%s' ext='%s'\n",
// codeFragment.data(),m_impl->defFileExt.data()); // codeFragment.data(),m_impl->defFileExt.data());
ParserInterface *pIntf = Doxygen::parserManager->getParser(m_impl->defFileExt); ParserInterface *pIntf = Doxygen::parserManager->getParser(m_impl->defFileExt);
pIntf->resetCodeParserState(); pIntf->resetCodeParserState();
Expand Down
2 changes: 1 addition & 1 deletion src/pre.l
Expand Up @@ -1050,7 +1050,7 @@ static int getNextId(const QCString &expr,int p,int *l)
return -1; return -1;
} }


/*! preforms recursive macro expansion on the string \a expr /*! performs recursive macro expansion on the string \a expr
* starting at position \a pos. * starting at position \a pos.
* May read additional characters from the input while re-scanning! * May read additional characters from the input while re-scanning!
* If \a expandAll is \c TRUE then all macros in the expression are * If \a expandAll is \c TRUE then all macros in the expression are
Expand Down
4 changes: 2 additions & 2 deletions src/sqlite3gen.cpp
Expand Up @@ -491,8 +491,8 @@ static int step(sqlite3 *db, SqlStmt &s,bool getRowId=FALSE, bool select=FALSE)
sqlite3_clear_bindings(s.stmt); sqlite3_clear_bindings(s.stmt);
return -1; return -1;
} }
if (getRowId && select) rowid = sqlite3_column_int(s.stmt, 0); // works on selects, doesnt on inserts if (getRowId && select) rowid = sqlite3_column_int(s.stmt, 0); // works on selects, doesn't on inserts
if (getRowId && !select) rowid = sqlite3_last_insert_rowid(db); //works on inserts, doesnt on selects if (getRowId && !select) rowid = sqlite3_last_insert_rowid(db); //works on inserts, doesn't on selects
sqlite3_reset(s.stmt); sqlite3_reset(s.stmt);
sqlite3_clear_bindings(s.stmt); // XXX When should this really be called sqlite3_clear_bindings(s.stmt); // XXX When should this really be called
return rowid; return rowid;
Expand Down
2 changes: 1 addition & 1 deletion src/tclscanner.l
Expand Up @@ -542,7 +542,7 @@ static void tcl_name(const QCString &ns0, const QCString &name0, QCString &ns, Q
static void tcl_name_SnippetAware(const QCString &ns0, const QCString &name0, QCString &ns, QCString &name) static void tcl_name_SnippetAware(const QCString &ns0, const QCString &name0, QCString &ns, QCString &name)
{ {
// If we are inside an inlined code snippet then ns0 // If we are inside an inlined code snippet then ns0
// already containes the complete namespace path. // already contains the complete namespace path.
// Any namespace qualifiers in name0 are redundant. // Any namespace qualifiers in name0 are redundant.
int i = name0.findRev("::"); int i = name0.findRev("::");
if (i>=0 && tcl.memberdef) if (i>=0 && tcl.memberdef)
Expand Down
2 changes: 1 addition & 1 deletion src/util.cpp
Expand Up @@ -8416,7 +8416,7 @@ uint getUtf8CodeToLower( const QCString& s, int idx )
} }




/*! @brief Returns one unicode character as ian unsigned interger /*! @brief Returns one unicode character as an unsigned integer
* from utf-8 string, making the character upper case if it was lower case. * from utf-8 string, making the character upper case if it was lower case.
* *
* @param s utf-8 encoded string * @param s utf-8 encoded string
Expand Down

0 comments on commit 5711b54

Please sign in to comment.