File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9
9
module Protocol
10
10
module HTTP
11
11
module Body
12
- # A body which buffers all it's contents.
12
+ # A body which buffers all its contents.
13
13
class Buffered < Readable
14
14
# Tries to wrap an object in a {Buffered} instance.
15
15
#
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module HTTP
10
10
module Body
11
11
# Represents a body suitable for HEAD requests, in other words, a body that is empty and has a known length.
12
12
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.
14
14
def self . for ( body )
15
15
head = self . new ( body . length )
16
16
Original file line number Diff line number Diff line change 9
9
module Protocol
10
10
module HTTP
11
11
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.
13
13
#
14
14
# As the body is buffered in memory, you may want to ensure your server has sufficient (virtual) memory available to buffer the entire body.
15
15
class Rewindable < Wrapper
You can’t perform that action at this time.
0 commit comments