From 10908a6f19e51c9bcc77d8caa7cb78a85d136f0b Mon Sep 17 00:00:00 2001 From: Devin Teske Date: Sun, 2 Jun 2013 23:08:21 +0000 Subject: [PATCH] Fix a copy/paste error within a comment. --- usr.sbin/bsdconfig/share/strings.subr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bsdconfig/share/strings.subr b/usr.sbin/bsdconfig/share/strings.subr index 4fd4dc02daf2..a4e436b13611 100644 --- a/usr.sbin/bsdconfig/share/strings.subr +++ b/usr.sbin/bsdconfig/share/strings.subr @@ -253,7 +253,7 @@ f_str2varname() # # foo="abc'123" # f_shell_escape "$foo" bar # bar=[abc'\''123] -# eval echo \'$foo\' # produces abc'123 +# eval echo \'$bar\' # produces abc'123 # # This is helpful when processing an argument list that has to retain its # escaped structure for later evaluations.