fix(serde): Rename visit_struct_key to visit_struct_field

This is more consistent with the rest of the serde naming patterns.
This commit is contained in:
Erick Tryzelaar
2016-02-12 21:22:42 -08:00
parent 32163cd53b
commit 064241f03c
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -917,7 +917,7 @@ fn deserialize_field_visitor(
}
}
deserializer.visit_struct_key(__FieldVisitor::<D>{ phantom: PhantomData })
deserializer.visit_struct_field(__FieldVisitor::<D>{ phantom: PhantomData })
}
}
).unwrap();