typo fixes
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 26 Oct 2016 11:15:35 +0000 (13:15 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 26 Oct 2016 11:15:35 +0000 (13:15 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash_test/ash-signals/return_in_trap1.tests
shell/hush_test/hush-signals/return_in_trap1.tests

index f2498024f1f41677b1060375c87da607185f6fb4..4c0d53bde294090496527ba13ac057f4e6f425cd 100755 (executable)
@@ -11,8 +11,8 @@ a
 
 echo d:$?
 # It's debatable what is the correct value above.
-# Does 'return' in trap sees $? == 2 or $? == 3?
+# Does 'return' in trap see $? == 2 or $? == 3?
 # IOW: after (kill..), does shell first wait for its completion
 # and sets $?, then checks pending signals and runs a trap handler,
-# or does it first checks pending signals and runs handler?
+# or does it first check pending signals and runs handler?
 # hush does the former, and prints 3.
index f2498024f1f41677b1060375c87da607185f6fb4..4c0d53bde294090496527ba13ac057f4e6f425cd 100755 (executable)
@@ -11,8 +11,8 @@ a
 
 echo d:$?
 # It's debatable what is the correct value above.
-# Does 'return' in trap sees $? == 2 or $? == 3?
+# Does 'return' in trap see $? == 2 or $? == 3?
 # IOW: after (kill..), does shell first wait for its completion
 # and sets $?, then checks pending signals and runs a trap handler,
-# or does it first checks pending signals and runs handler?
+# or does it first check pending signals and runs handler?
 # hush does the former, and prints 3.