From 2ee82df56518ca445614cbcc9bb5b38963c0710d Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Sat, 25 Sep 2021 08:23:37 -0500 Subject: [PATCH] Fix incorrect type in the typealias example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 44a209a..97a3e05 100644 --- a/README.md +++ b/README.md @@ -96,8 +96,8 @@ macro `defalias` is used to define a struct alias. ```clojure (defalias ::point [::ffi/struct - [:x ::ffi/float] - [:y ::ffi/float]]) + [[:x ::ffi/float] + [:y ::ffi/float]]]) (defcfn zero-point "zero" [] ::point)