summaryrefslogtreecommitdiff
path: root/src/analysis/typecheck.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/analysis/typecheck.h')
-rw-r--r--src/analysis/typecheck.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/typecheck.h b/src/analysis/typecheck.h
index b690f1d..f141deb 100644
--- a/src/analysis/typecheck.h
+++ b/src/analysis/typecheck.h
@@ -9,7 +9,7 @@
// Unlike the parser, this focuses on semantic validity (types, definitions).
/**
* @brief Type Checker Context.
- *
+ *
* Holds the state during the semantic analysis pass.
* Unlike the parser, this focuses on semantic validity (types, definitions, correctness).
*/
@@ -24,9 +24,9 @@ typedef struct TypeChecker
/**
* @brief Main Type Checking Entry Point.
- *
+ *
* Performs semantic analysis on the entire AST.
- *
+ *
* @param ctx Global parser context.
* @param root Root AST node of the program.
* @return 0 on success (no errors), non-zero if errors occurred.