Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Sep 13, 2012
1 parent 4af820c commit ab6df29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -32,4 +32,5 @@ doc/
*.lock
*.bak
tool/
*\#*
*\#*
.rbx/
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -41,7 +41,7 @@ require 'integer/base/core_ext'
'10'.to_i [*'0'..'9', *'A'..'Z'] #=> 36
'10'.to_i 37 #=> ArgumentError
'10'.to_i [*'0'..'9', *'A'..'Z', '?'] #=> 37
'1?'.to_s [*'0'..'9', *'A'..'Z', '?'] #=> '73' (37 * 1 + 36 * 1)
'1?'.to_i [*'0'..'9', *'A'..'Z', '?'] #=> 73 (37 * 1 + 36 * 1)
```

### Let's begin, your strange base number.
Expand Down
3 changes: 2 additions & 1 deletion integer-base.gemspec
Expand Up @@ -3,7 +3,8 @@ require File.expand_path('../lib/integer/base/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Kenichi Kamiya']
gem.email = ['kachick1+ruby@gmail.com']
gem.description = %q{Any formats can mean positional/unary numeral systems :)}
gem.description = %q{Any formats can mean positional/unary numeral systems :)
So base number conversion under your choise.}
gem.summary = %q{Any formats can mean positional/unary numeral systems :)}
gem.homepage = 'https://github.com/kachick/integer-base'

Expand Down

0 comments on commit ab6df29

Please sign in to comment.