Browse Source

Add missing docstrings

Alois Mahdal 9 years ago
parent
commit
ed25fd2305
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      src/include/pretty.sh

+ 6
- 0
src/include/pretty.sh View File

@@ -246,6 +246,9 @@ _pretty__get_frontend() {
246 246
 }
247 247
 
248 248
 _pretty__is_frontend() {
249
+    #
250
+    # True if $fname is one of our "frontends"
251
+    #
249 252
     case "$fname" in
250 253
         debug)      return 0 ;;
251 254
         debug_pipe) return 0 ;;
@@ -259,6 +262,9 @@ _pretty__is_frontend() {
259 262
 }
260 263
 
261 264
 _pretty__is_internal() {
265
+    #
266
+    # True if $fname is our internal function
267
+    #
262 268
     case "$fname" in
263 269
         _pretty__*) return 0 ;;
264 270
         *)          return 1 ;;