diff --git a/inxi b/inxi index a16f907..e57b093 100755 --- a/inxi +++ b/inxi @@ -40,7 +40,7 @@ #### CONVENTIONS: #### Indentation: TABS #### Do not use one liner flow controls. The ONLY time you should use ; is in -#### This single case: if [[ condition ]];then (ie, never: [[ condition ]] && statement) +#### this single case: if [[ condition ]];then (ie, never: [[ condition ]] && statement) #### All new code/methods must be in a function. #### For all boolean tests, use 'true' / 'false'. Do NOT use 0 or 1 unless #### it's a function return. Avoid complicated tests in the if condition itself.