diff options
author | John Hodge <tpg@mutabah.net> | 2015-04-15 17:07:51 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-04-15 17:07:51 +0800 |
commit | d0e38eff804b9f085bf8a3f0a3db4805fde72e05 (patch) | |
tree | 4d91e55edb4ecc8476259e2d10a2132bad95291e /samples | |
parent | 1b62d9688a1be2da2825c59e73f3220b0dc352fa (diff) | |
download | mrust-d0e38eff804b9f085bf8a3f0a3db4805fde72e05.tar.gz |
BNF - Successfully parses test crate
Diffstat (limited to 'samples')
-rw-r--r-- | samples/1.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/1.rs b/samples/1.rs index 05e91240..6bc434cb 100644 --- a/samples/1.rs +++ b/samples/1.rs @@ -101,7 +101,7 @@ impl<T:Reader> UTF8Reader<T> /// Implmentation of the same interface as 'Chars' provides, returns None at the end of the stream
impl<T:Reader> Iterator for UTF8Reader<T>
{
- type Item = IoResult<char>;
+ type Item = IoResult<char>;
fn next(&mut self) -> Option<IoResult<char>>
{
// Get result from decoder
|