Sfoglia il codice sorgente

Add missing docstrings

Alois Mahdal 8 anni fa
parent
commit
f51f9839ce
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. 9
    0
      src/shellfu/saturnin.sh

+ 9
- 0
src/shellfu/saturnin.sh Vedi File

@@ -5,6 +5,9 @@ shellfu import inigrep
5 5
 shellfu import pretty
6 6
 
7 7
 saturnin__help() {
8
+    #
9
+    # Print simple help message (basically just list of commands)
10
+    #
8 11
     {
9 12
         echo "built-in commands:"
10 13
         echo "    conf"
@@ -18,6 +21,9 @@ saturnin__help() {
18 21
 }
19 22
 
20 23
 saturnin__lssc() {
24
+    #
25
+    # List subcommands
26
+    #
21 27
     find "$SATURNIN_LIBEXEC" \
22 28
         -mindepth 1 \
23 29
         -maxdepth 1 \
@@ -46,6 +52,9 @@ saturnin__runhook() {
46 52
 }
47 53
 
48 54
 saturnin__runsc() {
55
+    #
56
+    # Run subcommand $SATURNIN_SUBCOMMAND
57
+    #
49 58
     local lexpath
50 59
     lexpath+="$SATURNIN_LIBEXEC/"
51 60
     lexpath+="$SATURNIN_LIBEXEC_PREFIX$SATURNIN_SUBCOMMAND"