File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 99module 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 #
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 99module 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
You can’t perform that action at this time.
0 commit comments