summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÖzgür Kesim <oec@codeblau.de>2019-06-18 13:14:22 +0200
committerÖzgür Kesim <oec@codeblau.de>2019-06-18 13:14:22 +0200
commitb9b0f69ccfe6fa9ef21a9323a77f1c65220d944d (patch)
tree8c61307402511fbe728e962c4819438130b2f25e
parent16cf31e9e91aef73061c24d644b3c093d7437b71 (diff)
expose Remaining in UnparsedInputError
-rw-r--r--errors.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/errors.go b/errors.go
index 3f8787c..e684e14 100644
--- a/errors.go
+++ b/errors.go
@@ -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
}