diff options
author | Özgür Kesim <oec@codeblau.de> | 2019-06-18 13:41:06 +0200 |
---|---|---|
committer | Özgür Kesim <oec@codeblau.de> | 2019-06-18 13:41:06 +0200 |
commit | ef954d857ce5a6e9952f7d6487662b6b164a127c (patch) | |
tree | c2d766cb03902bd03466b12a8e69ad8cc3087581 /errors.go | |
parent | 6b9cd80df517fd7d85a256a950f3de726d7e619e (diff) | |
parent | 9bc60a23116a1992e56d3a2754df6523bc565e99 (diff) |
Merge branch 'master' of github.com:/oec/goparsify
Diffstat (limited to 'errors.go')
-rw-r--r-- | errors.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,10 +17,10 @@ func (e *Error) Error() string { return fmt.Sprintf("offset %d: expected %s", e. // UnparsedInputError is returned by Run when not all of the input was consumed. There may still be a valid result type UnparsedInputError struct { - remaining string + Remaining string } // Error satisfies the golang error interface func (e UnparsedInputError) Error() string { - return "left unparsed: " + e.remaining + return "left unparsed: " + e.Remaining } |