alberthrocks

doc styling

Aug 17th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         ! Lookup a variable and check its status.
  2.         !
  3.         ! Given the variable name, lookup its status within the JSON
  4.         ! resource file.
  5.         !
  6.         ! If the variable is present in the JSON file, and it is
  7.         ! enabled, this will return true. Otherwise, if the variable
  8.         ! doesn't exist in the resource file, or it is disabled,
  9.         ! this will return false.
  10.         !
  11.         ! Args:
  12.         !     var_name (character(len=*)): variable name to lookup
  13.         !         within the resource file.
  14.         !
  15.         ! Returns:
  16.         !     var_enabled (logical): whether the variable is enabled or
  17.         !         not within the resource file.
  18.         !
  19.  
  20. versus...
  21.  
  22.         ! Lookup a variable and check its status.
  23.         !
  24.         ! Given the variable name, lookup its status within the JSON
  25.         ! resource file.
  26.         !
  27.         ! Args:
  28.         !     var_name (character(len=*)): variable name to lookup
  29.         !         within the resource file.
  30.         !
  31.         ! Returns:
  32.         !     var_enabled (logical): whether the variable is enabled or
  33.         !         not within the resource file.
  34.         !    
  35.         !     If the variable is present in the JSON file, and it is
  36.         !     enabled, this will return true. Otherwise, if the variable
  37.         !     doesn't exist in the resource file, or it is disabled,
  38.         !     this will return false.
  39.         !
Advertisement
Add Comment
Please, Sign In to add comment