aboutsummaryrefslogtreecommitdiff
path: root/src/framework
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2017-08-26 02:36:18 +0200
committeracdenisSK <[email protected]>2017-08-26 02:36:18 +0200
commit68c5be8b6beec57618abea4d8b5bcca34489746e (patch)
tree04cb9a96bd8bbfbfd031f92317cbc9cff526057b /src/framework
parentRevamp `RwLock` usage in the lib (diff)
downloadserenity-68c5be8b6beec57618abea4d8b5bcca34489746e.tar.xz
serenity-68c5be8b6beec57618abea4d8b5bcca34489746e.zip
Use `$crate` for `Args`
Diffstat (limited to 'src/framework')
-rw-r--r--src/framework/standard/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/framework/standard/mod.rs b/src/framework/standard/mod.rs
index 3aaee92..c67e128 100644
--- a/src/framework/standard/mod.rs
+++ b/src/framework/standard/mod.rs
@@ -71,7 +71,7 @@ macro_rules! command {
#[allow(unreachable_code, unused_mut)]
pub fn $fname(mut $c: &mut $crate::client::Context,
_: &$crate::model::Message,
- _: Args)
+ _: $crate::framework::standard::Args)
-> ::std::result::Result<(), String> {
$b
@@ -82,7 +82,7 @@ macro_rules! command {
#[allow(unreachable_code, unused_mut)]
pub fn $fname(mut $c: &mut $crate::client::Context,
$m: &$crate::model::Message,
- _: Args)
+ _: $crate::framework::standard::Args)
-> ::std::result::Result<(), String> {
$b
@@ -93,7 +93,7 @@ macro_rules! command {
#[allow(unreachable_code, unused_mut)]
pub fn $fname(mut $c: &mut $crate::client::Context,
$m: &$crate::model::Message,
- mut $a: Args)
+ mut $a: $crate::framework::standard::Args)
-> ::std::result::Result<(), String> {
$b