Moved ctx in func macro to be first arg

This commit is contained in:
Syrus
2019-02-09 13:33:22 -08:00
parent e7c3b99ba9
commit 393b7dbdf3
3 changed files with 7 additions and 7 deletions

View File

@ -32,7 +32,7 @@ impl IsExport for Export {
/// },
/// };
///
/// fn foo(n: i32, _: &mut Ctx) -> i32 {
/// fn foo(_: &mut Ctx, n: i32) -> i32 {
/// n
/// }
/// ```