Skip to content

Commit

Permalink
Merge branch 'codethesaurus:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
geekygirlsarah authored Oct 7, 2024
2 parents 2d44a69 + 0130d2d commit 3777483
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions web/thesauruses/_meta/strings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"find_start_index_of_substring": "Find index of where a substring starts",
"find_start_index_of_additional_substring": "Find index of an additional substring (or starting at another index)",
"find_start_index_of_substring_from_end": "Find substring index starting at end",
"count_occurrences_of_substring": "Find number of occurences of a substring",
"count_occurrences_of_substring": "Find number of occurrences of a substring",
"get_leftmost_characters": "Get a specified number of characters from the left",
"get_rightmost_characters": "Get a specified number of characters from the right",
"get_substring_from_start_and_end_index": "Return a substring from a string based on starting and ending indices",
Expand All @@ -53,7 +53,7 @@
"split_at_substring": "Split string by locating all substrings",
"merge_lists_into_string": "Merge a list of strings into one string",
"encode_html_entities": "Encode HTML entities in a string (ex: ™ to ™)",
"decode_html_entities": "Decode HTML entitles into characters",
"decode_html_entities": "Decode HTML entities into characters",
"encode_url_percent": "Encode URL percent encoding into string (ex: ' ' to %20)",
"decode_url_percent": "Decode URL percent encoding",
"encode_to_base64": "Encode string into Base64 format",
Expand All @@ -63,9 +63,12 @@
"format_string_function": "Function to format a string",
"parameter_format_in_order": "Parameter used in format function if they're used in order",
"parameter_format_numerical": "Parameter used in format function if they're numerically numbered",
"parameter_format_by_name": "Paramater used in format function if they're named variables",
"format_as_integer": "Format parameter as an integer",
"format_as_decimal": "Format parameter as a decimal number",
"parameter_format_by_name": "Parameter used in format function if they're named variables",
"format_as_signed_integer": "Format parameter as a signed integer (int)",
"format_as_unsigned_integer": "Format parameter as an unsigned integer (unsigned int)",
"format_as_signed_long": "Format parameter as a signed long integer (long int)",
"format_as_unsigned_long": "Format parameter as an unsigned long integer (unsigned long int)",
"format_as_floating_point": "Format parameter as a floating-point number (float/double)",
"format_as_fixed_decimal": "Format parameter as a fixed-point decimal number",
"format_as_currency": "Format parameter as a currency number",
"format_as_percentage": "Format parameter as a percentage number",
Expand Down

0 comments on commit 3777483

Please sign in to comment.