Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jmuk committed May 3, 2016
1 parent 474b6c7 commit 709ed96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ stable.
Details
-------

For detailed documentation of the modules in gax-python, please watch [DOCUMENTATION][].
For detailed documentation of the modules in gax-ruby, please watch [DOCUMENTATION][].

[DOCUMENTATION]: http://www.rubydoc.info/gems/google-gax

Expand Down
2 changes: 1 addition & 1 deletion lib/google/gax/api_callable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def next_page_token
# Truthiness of next_page_token.
def next_page_token?
!@response.nil? && !next_page_token.nil? && next_page_token != 0 &&
(!next_page_token.respond_to?(:empty) || !next_page_token.empty?)
(!next_page_token.respond_to?(:empty?) || !next_page_token.empty?)
end
end

Expand Down
2 changes: 1 addition & 1 deletion lib/google/gax/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@

module Google
module Gax
VERSION = '0.1.2'.freeze
VERSION = '0.1.3'.freeze
end
end

0 comments on commit 709ed96

Please sign in to comment.