Преглед изворни кода

Shell: Update manpage about for loop behaviour around signals

AnotherTest пре 5 година
родитељ
комит
32bfb48577
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Base/usr/share/man/man5/Shell.md

+ 1 - 1
Base/usr/share/man/man5/Shell.md

@@ -169,7 +169,7 @@ The general syntax follows the form `for name in expr { sequence }`, and allows
 
 A for-loop evaluates the _sequence_ once per every element in the _expr_, seetting the local variable _name_ to the element being processed.
 
-The Shell shall cancel the for loop if two consecutive commands are interrupted via any of SIGINT (\^C), SIGQUIT (\^\\) or SIGKILL.
+The Shell shall cancel the for loop if two consecutive commands are interrupted via SIGINT (\^C), and any other terminating signal aborts the loop entirely.
 
 #### Examples
 ```sh