Fix formatting so that indents are consistent.

This commit is contained in:
Out Of Ideas 2023-12-01 20:05:57 -06:00
parent c5008018e9
commit 9b7dfa2c73
1 changed files with 6 additions and 4 deletions

View File

@ -30,6 +30,8 @@
# MESSAGE, and create a test #
# habbit. #
# #
# 01/12/2023 Out Of Ideas Fix formatting. #
# #
############################################################
############################################################
############################################################
@ -195,10 +197,10 @@ unset VERBOSE
# Initialize Functions #
############################################################
trim_string() {
# Usage: trim_string " example string "
: "${1#"${1%%[![:space:]]*}"}"
: "${_%"${_##*[![:space:]]}"}"
printf '%s\n' "$_"
# Usage: trim_string " example string "
: "${1#"${1%%[![:space:]]*}"}"
: "${_%"${_##*[![:space:]]}"}"
printf '%s\n' "$_"
}
############################################################