summaryrefslogtreecommitdiffstats
path: root/addon/doxysearch/doxysearch.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-12-14 11:51:44 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-12-14 11:51:44 (GMT)
commit02265be74ab808c38217c2458286e614386321e9 (patch)
tree69ad504e7376007e3f10f9b95edcba7cfec49e1d /addon/doxysearch/doxysearch.cpp
parenta2c0932323f0f844a76ec696cab6e78f5e85b05a (diff)
parent6920d3ec6db21cec32086249a48875cbac957470 (diff)
downloadDoxygen-02265be74ab808c38217c2458286e614386321e9.zip
Doxygen-02265be74ab808c38217c2458286e614386321e9.tar.gz
Doxygen-02265be74ab808c38217c2458286e614386321e9.tar.bz2
Merge pull request #262 from orbitcowboy/master
Fixed typos in comments. No functional changes.
Diffstat (limited to 'addon/doxysearch/doxysearch.cpp')
-rw-r--r--addon/doxysearch/doxysearch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/addon/doxysearch/doxysearch.cpp b/addon/doxysearch/doxysearch.cpp
index d885502..f6946ef 100644
--- a/addon/doxysearch/doxysearch.cpp
+++ b/addon/doxysearch/doxysearch.cpp
@@ -116,7 +116,7 @@ static std::string uriDecode(const std::string & sSrc)
}
/** return list of strings that result when splitting \a s using
- * delimeter \a delim
+ * delimiter \a delim
*/
static std::vector<std::string> split(const std::string &s, char delim)
{
@@ -137,7 +137,7 @@ T fromString(const std::string& s)
return t;
}
-/** Class that holds the startin position of a word */
+/** Class that holds the starting position of a word */
struct WordPosition
{
WordPosition(int s,int i) : start(s), index(i) {}
@@ -196,7 +196,7 @@ static bool insideRange(const std::vector<Range> &ranges,int start,int len)
}
/** Returns a list of text \a fragments from \a s containing one or
- * more \a words. The list is sorted occording to the
+ * more \a words. The list is sorted according to the
* number of occurrences of words within the fragment.
*/
static void highlighter(const std::string &s,