Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Athan <[email protected]>
  • Loading branch information
kgryte authored Oct 4, 2024
1 parent 7079976 commit 2a94c9e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,19 @@ alias=${ALIAS:-'iterTest'}

# Define the package description:
# shellcheck disable=SC2016
pkg_desc="Create an iterator which ${DESC:-'computes \`gamma(x+1) - 1\`'} for each iterated value."
pkg_desc="Create an iterator which ${DESC:-'TODO'} for each iterated value."

# Define the module description:
# shellcheck disable=SC2016
module_desc="Create an iterator which iteratively ${DESC:-'computes \`gamma(x+1) - 1\`'}."
module_desc="Create an iterator which iteratively ${DESC:-'TODO'}."

# Define main export description:
# shellcheck disable=SC2016
main_desc="Returns an iterator which iteratively ${DESC:-'computes \`gamma(x+1) - 1\`'}."
main_desc="Returns an iterator which iteratively ${DESC:-'TODO'}."

# Define the test description:
# shellcheck disable=SC2016
test_desc=${DESC:-'computes \`gamma(x+1) - 1\`'}'for each iterated value'
test_desc=${DESC:-'TODO'}' for each iterated value'

# Define description text (found in the README) which should be a link to the unary package (NOTE: to not include a link, set to an empty string):
desc_link_text=${DESC_LINK_TEXT:-''}
Expand Down

0 comments on commit 2a94c9e

Please sign in to comment.