summaryrefslogtreecommitdiffstats
path: root/src/coords.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/coords.rs')
-rw-r--r--src/coords.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coords.rs b/src/coords.rs
index a95e378..2e292ae 100644
--- a/src/coords.rs
+++ b/src/coords.rs
@@ -39,7 +39,7 @@ impl<T: Value> Coordinates for [T] {
/// [`Coordinates`] implementation for arrays.
macro_rules! array_coordinates {
- ($n:expr) => (
+ ($n:expr) => {
impl<T: Value> Coordinates for [T; $n] {
type Value = T;
@@ -51,7 +51,7 @@ macro_rules! array_coordinates {
self[i]
}
}
- );
+ };
}
array_coordinates!(1);