aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 5da23c34b..9b1f57949 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5931,7 +5931,7 @@ rmescapes(char *str, int flag)
* superfluous escapes (\z where z has no
* special meaning anyway). But this causes
* bugs such as string of one greek letter rho
- * (unicode-encoded as two bytes 'cf,81")
+ * (unicode-encoded as two bytes "cf,81")
* getting encoded as "cf,CTLESC,81"
* and here, converted to "cf,\,81" -
* which does not go well with some flavors