From 25703d5f79e75b5101eaa4aaf25706c602a7ca31 Mon Sep 17 00:00:00 2001 From: Valerii Hiora Date: Wed, 17 Sep 2014 10:00:15 +0300 Subject: Updated to _mut conventions --- src/parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parser.rs') diff --git a/src/parser.rs b/src/parser.rs index ec083dd..6632168 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -634,7 +634,7 @@ impl<'a> Parser<'a> { continue } Array(ref mut array) => { - match array.as_mut_slice().mut_last() { + match array.as_mut_slice().last_mut() { Some(&Table(ref mut table)) => cur = table, _ => { self.errors.push(ParserError { @@ -691,7 +691,7 @@ impl<'a> Parser<'a> { } match into.find_mut(&key) { Some(&Table(ref mut table)) => { - for (k, v) in value.move_iter() { + for (k, v) in value.into_iter() { if !table.insert(k.clone(), v) { self.errors.push(ParserError { lo: key_lo, -- cgit v1.2.3