Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
arqunis committed Sep 30, 2017
1 parent f9efc21 commit 17838b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/framework/standard/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ use model::Channel;
///
/// ```rust,ignore
/// command!(multiply(_context, message, args) {
/// let first = args.single::<i32>().unwrap();
/// let second = args.single::<i32>().unwrap();
/// let first = args.single::<f64>().unwrap();
/// let second = args.single::<f64>().unwrap();
/// let product = first * second;
///
/// if let Err(why) = message.reply(&product.to_string()) {
Expand Down

0 comments on commit 17838b5

Please sign in to comment.