From 5bfead2b86e69a4a1c75f8091763d6014aa73c3b Mon Sep 17 00:00:00 2001 From: NathanSnail Date: Fri, 17 May 2024 23:59:30 +1200 Subject: [PATCH] Fix typo require was typo'd as requrie in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 01d91e6..79bbbe7 100644 --- a/README.md +++ b/README.md @@ -114,14 +114,14 @@ due to collision of function names in the C namespace. Load ImageMagick directly: ```lua -magick = requrie "magick.wand" +magick = require "magick.wand" local img = magick.load_image("some_image.png") ``` Load GraphicsMagick directly: ```lua -magick = requrie "magick.gmwand" +magick = require "magick.gmwand" local img = magick.load_image("some_image.png") ``` ### Methods