From 371cba69d23e515fb757e1bc8921d94638cbe370 Mon Sep 17 00:00:00 2001 From: Seth Friedman Date: Wed, 22 May 2013 11:46:06 -0500 Subject: [PATCH] Used single quotes in source description to match other parts of the CocoaPods docs. --- lib/cocoapods-core/specification/dsl.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/cocoapods-core/specification/dsl.rb b/lib/cocoapods-core/specification/dsl.rb index b18c063b7..86c0809ae 100644 --- a/lib/cocoapods-core/specification/dsl.rb +++ b/lib/cocoapods-core/specification/dsl.rb @@ -212,13 +212,13 @@ module DSL # # @example Specifying a Git source with a tag. # - # spec.source = { :git => "git://github.com/AFNetworking/AFNetworking.git", + # spec.source = { :git => 'git://github.com/AFNetworking/AFNetworking.git', # :tag => 'v0.0.1' } # # @example Using the version of the Pod to identify the Git tag. # - # spec.source = { :git => "git://github.com/AFNetworking/AFNetworking.git", - # :tag => "v#{spec.version}" } + # spec.source = { :git => 'git://github.com/AFNetworking/AFNetworking.git', + # :tag => 'v#{spec.version}' } # # @param [Hash{Symbol=>String}] source # The location from where the library should be retrieved.