Skip to content

Commit

Permalink
Used single quotes in source description to match other parts of the …
Browse files Browse the repository at this point in the history
…CocoaPods docs.
  • Loading branch information
sethfri committed May 22, 2013
1 parent 34b3cd1 commit 371cba6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/cocoapods-core/specification/dsl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 371cba6

Please sign in to comment.