Return () instead of "" in input_end!()
diff --git a/synom/src/lib.rs b/synom/src/lib.rs
index 9b5fafb..06a0f88 100644
--- a/synom/src/lib.rs
+++ b/synom/src/lib.rs
@@ -830,9 +830,9 @@
 
 // Not a public API
 #[doc(hidden)]
-pub fn input_end(input: Cursor) -> PResult<'static, &'static str> {
+pub fn input_end(input: Cursor) -> PResult<'static, ()> {
     if input.eof() {
-        Ok((Cursor::empty(), ""))
+        Ok((Cursor::empty(), ()))
     } else {
         parse_error()
     }