From 4953e7ac49a1eae93f789b4e0c3cdba39f05dfef Mon Sep 17 00:00:00 2001 From: fogsong233 <75871375+fogsong233@users.noreply.github.com> Date: Mon, 15 Sep 2025 22:03:26 +0800 Subject: [PATCH] Fix typo (#260) --- include/Compiler/CompilationUnit.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Compiler/CompilationUnit.h b/include/Compiler/CompilationUnit.h index a79bc674..f812281a 100644 --- a/include/Compiler/CompilationUnit.h +++ b/include/Compiler/CompilationUnit.h @@ -12,10 +12,10 @@ namespace clice { /// All AST related information needed for language server. class CompilationUnit { public: - /// The kind describes how we preprocess ths source file + /// The kind describes how we preprocess this source file /// to get this compilation unit. enum class Kind : std::uint8_t { - /// From preprocessing the source file. Therefore diretives + /// From preprocessing the source file. Therefore directives /// are available but AST nodes are not. Preprocess,