devd: Correct typo in comment.

Submitted by:	Christoph Mallon <christoph.mallon@gmx.de>
Approved by:	cperciva (mentor)
This commit is contained in:
Eitan Adler 2013-03-04 02:21:31 +00:00
parent 7d9e9c60a0
commit 4cb9d1beca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=247763

View File

@ -606,7 +606,7 @@ config::expand_one(const char *&src, string &dst)
return;
}
// ${^A-Za-z] -> $\1
// $[^A-Za-z] -> $\1
if (!isalpha(*src)) {
dst += '$';
dst += *src++;