Comment correction

This commit is contained in:
Jan-Niclas Loosen
2026-01-23 13:22:15 +01:00
parent f0877b5685
commit d1bfba81f0
2 changed files with 1 additions and 1 deletions

View File

@@ -210,7 +210,7 @@ class CALL(compiler.CALL):
# Find the functions in the function list
if self.f_name not in FUNCTIONS:
raise RuntimeError(f"Call to undefined function '{self.f_name}'")
# Determine start and exit node of the function
# Determine the start and exit node of the function
f_start, f_end = FUNCTIONS[self.f_name]
# Create return node from function