Re-indent

This commit is contained in:
Erick Tryzelaar 2015-07-29 12:08:15 -07:00
parent 578a0178b5
commit 7585ce9ed4

View File

@ -160,8 +160,8 @@ pub trait Serializer {
#[inline]
fn visit_tuple_struct<V>(&mut self,
_name: &'static str,
visitor: V) -> Result<(), Self::Error>
_name: &'static str,
visitor: V) -> Result<(), Self::Error>
where V: SeqVisitor,
{
self.visit_tuple(visitor)
@ -201,8 +201,8 @@ pub trait Serializer {
#[inline]
fn visit_struct<V>(&mut self,
_name: &'static str,
visitor: V) -> Result<(), Self::Error>
_name: &'static str,
visitor: V) -> Result<(), Self::Error>
where V: MapVisitor,
{
self.visit_map(visitor)