aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorFlorent Revest <revest@chromium.org>2026-01-20 18:44:10 +0100
committerDmitry Vyukov <dvyukov@google.com>2026-01-20 19:22:54 +0000
commit22cf81e1bf2cc65e46d59d3c203f8b4b4b623114 (patch)
tree2424c573155e380fa48db3205e395430ab516a66 /tools
parentcf20fe98a57b940f293234cb22c3cd51a1c9fa9d (diff)
tools/clang/codesearch: fix a typo
Diffstat (limited to 'tools')
-rw-r--r--tools/clang/codesearch/codesearch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/clang/codesearch/codesearch.cpp b/tools/clang/codesearch/codesearch.cpp
index 80c9f012a..2845d0867 100644
--- a/tools/clang/codesearch/codesearch.cpp
+++ b/tools/clang/codesearch/codesearch.cpp
@@ -27,7 +27,7 @@ using namespace clang;
// MacroDef/MacroMap hold information about macros defined in the file.
struct MacroDef {
std::string Value; // value as written in the source
- SourceRange Range; // soruce range of the value
+ SourceRange Range; // source range of the value
};
using MacroMap = std::unordered_map<std::string, MacroDef>;