From ad116f4391604e2ad43625fe064b6b293d11917a Mon Sep 17 00:00:00 2001 From: Aaron Lerch Date: Thu, 8 Sep 2011 22:41:22 -0400 Subject: [PATCH] Adding spaces around single backslash in code blocks to enable rdoc to parse it correctly --- dir.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dir.c b/dir.c index 128e2c8..fb41ce1 100644 --- a/dir.c +++ b/dir.c @@ -1779,7 +1779,7 @@ dir_s_aref(int argc, VALUE *argv, VALUE obj) * More than two literals may be specified. * Equivalent to pattern alternation in * regexp. - * \:: Escapes the next metacharacter. + * \ :: Escapes the next metacharacter. * Note that this means you cannot use backslash in windows * as part of a glob, i.e. Dir["c:\\foo*"] will not work * use Dir["c:/foo*"] instead @@ -1923,7 +1923,7 @@ dir_entries(int argc, VALUE *argv, VALUE io) * Behaves exactly like character sets in * Regexp, including set negation * ([^a-z]). - * \:: Escapes the next metacharacter. + * \ :: Escapes the next metacharacter. * * flags is a bitwise OR of the FNM_xxx * parameters. The same glob pattern and flags are used by -- 1.7.4.4