Skip to content

Commit e8b2e64

Browse files
authored
Merge pull request #613 from connorshea/patch-1
Grammar fixes [ci skip]
2 parents 82182ec + e44d1a3 commit e8b2e64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/rugged/repository.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def ref_names(glob = nil)
140140

141141
# All the tags in the repository.
142142
#
143-
# Returns an TagCollection containing all the tags.
143+
# Returns a TagCollection containing all the tags.
144144
def tags
145145
@tags ||= TagCollection.new(self)
146146
end
@@ -155,14 +155,14 @@ def remotes
155155

156156
# All the branches in the repository
157157
#
158-
# Returns an BranchCollection containing Rugged::Branch objects
158+
# Returns a BranchCollection containing Rugged::Branch objects
159159
def branches
160160
@branches ||= BranchCollection.new(self)
161161
end
162162

163163
# All the submodules in the repository
164164
#
165-
# Returns an SubmoduleCollection containing Rugged::Submodule objects
165+
# Returns a SubmoduleCollection containing Rugged::Submodule objects
166166
def submodules
167167
@submodules ||= SubmoduleCollection.new(self)
168168
end

0 commit comments

Comments
 (0)