diff options
| author | Maiddog <[email protected]> | 2017-08-22 06:27:10 -0500 |
|---|---|---|
| committer | alex <[email protected]> | 2017-08-22 13:27:10 +0200 |
| commit | cb072aab60ac67bc4d52aed3554300c1c5e83081 (patch) | |
| tree | fc00dd5d91b989582e10a93afb4713f1fbd6c88f /src/framework/mod.rs | |
| parent | Fix presence updates (diff) | |
| download | serenity-cb072aab60ac67bc4d52aed3554300c1c5e83081.tar.xz serenity-cb072aab60ac67bc4d52aed3554300c1c5e83081.zip | |
Fix tests (#145)
Diffstat (limited to 'src/framework/mod.rs')
| -rw-r--r-- | src/framework/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/framework/mod.rs b/src/framework/mod.rs index c59c8a2..678b5dc 100644 --- a/src/framework/mod.rs +++ b/src/framework/mod.rs @@ -54,7 +54,7 @@ //! //! [`Client::with_framework`]: ../client/struct.Client.html#method.with_framework -#[cfg(feature="standard_framework")] +#[cfg(feature = "standard_framework")] pub mod standard; #[cfg(feature = "standard_framework")] @@ -64,7 +64,7 @@ use client::Context; use model::Message; use tokio_core::reactor::Handle; -#[cfg(feature="standard_framework")] +#[cfg(feature = "standard_framework")] use model::UserId; /// This trait allows for serenity to either use its builtin framework, or yours. |