Browse Source

Fix a typo

jonathanvdc 8 years ago
parent
commit
8654620ede
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/modelverse_kernel/primitives.py

+ 1 - 1
kernel/modelverse_kernel/primitives.py

@@ -18,7 +18,7 @@ class InterpretedFunctionFinished(Exception):
 #
 # ### Rationale for __exception_return
 #
-# __exception_return is a useful mechanism because it allows us to have an __call_function
+# __exception_return is a useful mechanism because it allows us to have a __call_function
 # implementation that has O(1) state read overhead. A previous implementation of
 # __call_function checked if the caller's frame had been popped whenever
 # ModelverseKernel.execute_yield threw a StopIteration exception. However, that incurs O(n) overhead