Skip to content

Commit

Permalink
Updated to Crystal > 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ary Borenszweig committed Apr 12, 2016
1 parent 4a9ac3f commit 01119be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: toml
version: 0.2.0
version: 0.3.0

authors:
- Ary Borenszweig <aborenszweig@manas.com.ar>
4 changes: 2 additions & 2 deletions src/toml/parse_exception.cr
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Raised on invalid TOML strings.
class TOML::ParseException < Exception
# The line number where the invalid TOML was detected.
getter line_number
getter line_number : Int32

# The column number where the invalid TOML was detected.
getter column_number
getter column_number : Int32

# Creates a ParseException with the given message, line number and column number.
def initialize(message, @line_number, @column_number)
Expand Down

0 comments on commit 01119be

Please sign in to comment.