From 8bc8a73e1b1f6221363898149131b2d012f99768 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berg?= Date: Mon, 5 Apr 2010 16:12:11 +0200 Subject: [PATCH] Put at-sign in front of multi-line continued string. Probably doesn't matter since the compiler should concatenate both forms equally. --- PBGitBinary.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBGitBinary.m b/PBGitBinary.m index 795891d..6b1a488 100644 --- a/PBGitBinary.m +++ b/PBGitBinary.m @@ -110,7 +110,7 @@ static NSMutableArray *locations = nil; { NSMutableString *error = [NSMutableString stringWithString: @"Could not find a git binary version " MIN_GIT_VERSION " or higher.\n" - "Please make sure there is a git binary in one of the following locations:\n\n"]; + @"Please make sure there is a git binary in one of the following locations:\n\n"]; for (NSString *location in [PBGitBinary searchLocations]) { [error appendFormat:@"\t%@\n", location]; }