diff --git a/lib/google/api_client/batch.rb b/lib/google/api_client/batch.rb index 603554a28..0efb17447 100644 --- a/lib/google/api_client/batch.rb +++ b/lib/google/api_client/batch.rb @@ -26,7 +26,7 @@ module Google class BatchedCallResponse # @return [String] UUID of the call attr_reader :call_id - # @return [Integer] HTTP status code + # @return [Fixnum] HTTP status code attr_accessor :status # @return [Hash] HTTP response headers attr_accessor :headers @@ -38,7 +38,7 @@ module Google # # @param [String] call_id # UUID of the original call - # @param [Integer] status + # @param [Fixnum] status # HTTP status # @param [Hash] headers # HTTP response headers diff --git a/lib/google/api_client/media.rb b/lib/google/api_client/media.rb index 07629c6e7..8cba0a105 100644 --- a/lib/google/api_client/media.rb +++ b/lib/google/api_client/media.rb @@ -25,7 +25,7 @@ module Google ## # Get the length of the stream # - # @return [Integer] + # @return [Fixnum] # Length of stream, in bytes def length io.respond_to?(:length) ? io.length : File.size(local_path) diff --git a/lib/google/api_client/result.rb b/lib/google/api_client/result.rb index 8ba0492de..8920f9421 100644 --- a/lib/google/api_client/result.rb +++ b/lib/google/api_client/result.rb @@ -43,7 +43,7 @@ module Google alias_method :reference, :request # For compatibility with pre-beta clients # @!attribute [r] status - # @return [Integer] HTTP status code + # @return [Fixnum] HTTP status code # @!attribute [r] headers # @return [Hash] HTTP response headers # @!attribute [r] body