Index: src/macros.py |
diff --git a/src/macros.py b/src/macros.py |
index c75f0ea48753b680f150fd4a132dd2de0f086309..ddd2f13bc13b6d7346ae0c433c94b9ecfa41755a 100644 |
--- a/src/macros.py |
+++ b/src/macros.py |
@@ -118,9 +118,7 @@ macro NUMBER_OF_CAPTURES(array) = ((array)[0]); |
# a type error is thrown. |
macro DATE_VALUE(arg) = (%_ClassOf(arg) === 'Date' ? %_ValueOf(arg) : ThrowDateTypeError()); |
-# Last input and last subject are after the captures so we can omit them on |
-# results returned from global searches. Beware - these evaluate their |
-# arguments twice. |
+# Last input and last subject of regexp matches. |
macro LAST_SUBJECT(array) = ((array)[1]); |
macro LAST_INPUT(array) = ((array)[2]); |