Skip to content

Commit 8160d0f

Browse files
wtnioquatix
authored andcommitted
Fix grammar.
1 parent c58a3bd commit 8160d0f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/protocol/http/body/buffered.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
module Protocol
1010
module HTTP
1111
module Body
12-
# A body which buffers all it's contents.
12+
# A body which buffers all its contents.
1313
class Buffered < Readable
1414
# Tries to wrap an object in a {Buffered} instance.
1515
#

lib/protocol/http/body/head.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module HTTP
1010
module Body
1111
# Represents a body suitable for HEAD requests, in other words, a body that is empty and has a known length.
1212
class Head < Readable
13-
# Create a head body for the given body, capturing it's length and then closing it.
13+
# Create a head body for the given body, capturing its length and then closing it.
1414
def self.for(body)
1515
head = self.new(body.length)
1616

lib/protocol/http/body/rewindable.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
module Protocol
1010
module HTTP
1111
module Body
12-
# A body which buffers all it's contents as it is read.
12+
# A body which buffers all its contents as it is read.
1313
#
1414
# As the body is buffered in memory, you may want to ensure your server has sufficient (virtual) memory available to buffer the entire body.
1515
class Rewindable < Wrapper

0 commit comments

Comments
 (0)