From 235e8d591480d7e1378c27fe65c5529625d4b5be Mon Sep 17 00:00:00 2001 From: Justin Lebar Date: Mon, 31 Mar 2014 15:11:47 -0700 Subject: code and test: fix misuses of "nor" Signed-off-by: Justin Lebar Signed-off-by: Junio C Hamano --- perl/Git/SVN.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl/Git') diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm index 62f3293be..a59564fb3 100644 --- a/perl/Git/SVN.pm +++ b/perl/Git/SVN.pm @@ -480,8 +480,8 @@ sub refname { # It cannot end with a slash /, we'll throw up on this because # SVN can't have directories with a slash in their name, either: if ($refname =~ m{/$}) { - die "ref: '$refname' ends with a trailing slash, this is ", - "not permitted by git nor Subversion\n"; + die "ref: '$refname' ends with a trailing slash; this is ", + "not permitted by git or Subversion\n"; } # It cannot have ASCII control character space, tilde ~, caret ^, -- cgit v1.2.1