Skip to content

Commit da24927

Browse files
committed
Show emoji in HTML treeview
After review, spelling corrections
1 parent d184092 commit da24927

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/textdocvisitor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void TextDocVisitor::operator()(const DocSymbol &s)
3939

4040
void TextDocVisitor::operator()(const DocEmoji &s)
4141
{
42-
// the TextDocVisitor is only invokated for the JS part of the HTML output
42+
// the TextDocVisitor is only invoked for the JS part of the HTML output
4343
const char *res = EmojiEntityMapper::instance().unicode(s.index());
4444
if (res)
4545
{

src/util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5638,7 +5638,7 @@ QCString parseCommentAsText(const Definition *scope,const MemberDef *md,
56385638
result.at(i)=='.' ||
56395639
result.at(i)=='!' ||
56405640
result.at(i)=='?' ||
5641-
result.at(i)=='}') // good for UTF-16 characters and } otherwise also hood point to stop string
5641+
result.at(i)=='}') // good for UTF-16 characters and } otherwise also a good point to stop the string
56425642
{
56435643
i++; // we want to be "behind" last inspected character
56445644
break;

0 commit comments

Comments
 (0)