From da59dc4445ce068957e57a3edf4c51745c0bba2b Mon Sep 17 00:00:00 2001 From: Luke Randall Date: Fri, 24 Apr 2020 11:02:22 +0100 Subject: [PATCH] Run cargo fmt --- yew/src/callback.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/yew/src/callback.rs b/yew/src/callback.rs index 2b31e8beb55..69b8d760b99 100644 --- a/yew/src/callback.rs +++ b/yew/src/callback.rs @@ -1,8 +1,8 @@ -//! This module contains structs to interact with `Scope`s. +//! This module contains data types for interacting with `Scope`s. +use std::cell::RefCell; use std::fmt; use std::rc::Rc; -use std::cell::RefCell; /// Universal callback wrapper. ///