diff --git a/pkgs/build-support/setup-hooks/make-c-wrapper.sh b/pkgs/build-support/setup-hooks/make-c-wrapper.sh index 6f024b3356c3..e018e4f161d7 100644 --- a/pkgs/build-support/setup-hooks/make-c-wrapper.sh +++ b/pkgs/build-support/setup-hooks/make-c-wrapper.sh @@ -13,7 +13,7 @@ # To debug a binary wrapper after you compiled it, use the `strings` command escape_string_literal() { - # We need to make sure that special characters are escaped + # We need to make sure that special characters are escaped # before trying to create C string literals result=${1//$'\\'/$'\\\\'} result=${result//\"/'\"'}