From 4838d0def9a6d8eea3bc14aedc167fff3de0aa0a Mon Sep 17 00:00:00 2001 From: Guido Marucci Blas Date: Fri, 3 Jul 2015 13:43:03 -0300 Subject: [PATCH] Fixes error in Carthage documentation ~> is like an operator and does not go inside the version string. https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f5c4319..4722a44 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ And finally run `$ pod install`. You can also use [Carthage](https://github.com/Carthage/Carthage) by adding this line to your Cartfile (3.2.5 is the first release with Carthage support): ``` -github "swisspol/GCDWebServer" "~> 3.2.5" +github "swisspol/GCDWebServer" ~> "3.2.5" ``` Then run `$ carthage update` and add the generated frameworks to your Xcode projects (see [Carthage instructions](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application)).