summaryrefslogtreecommitdiff
path: root/src/func/macros.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2019-12-06 13:26:44 +0100
committerLaurenz <laurmaedje@gmail.com>2019-12-06 13:26:44 +0100
commit1099330988da78c82c6e155fab88d81fb2f1d4c0 (patch)
tree5a13332defa0ad482ed8669ad52f59a595aa25d6 /src/func/macros.rs
parentf5b104d0da1c414fb59878d7378add316ee14798 (diff)
Finish consistent map and add two further convenience maps 🗺
Diffstat (limited to 'src/func/macros.rs')
-rw-r--r--src/func/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/func/macros.rs b/src/func/macros.rs
index daae2769..17a554cf 100644
--- a/src/func/macros.rs
+++ b/src/func/macros.rs
@@ -29,7 +29,7 @@ macro_rules! function {
function!(@parse $type $meta | $($rest)*);
};
- // Set the metadata to `()` if there is not type definition.
+ // Set the metadata to `()` if there is no type definition.
(@meta $type:ident | $($rest:tt)*) => {
function!(@parse $type () | $($rest)*);
};