From baadd88bcdf27e29f4a311f0c93245cef75815e2 Mon Sep 17 00:00:00 2001 From: LDDestroier Date: Mon, 13 Apr 2020 19:45:35 -0400 Subject: [PATCH] Fixed typo of "miscTransformation" It should have been "metaTransformation", oops --- windont/windont.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windont/windont.lua b/windont/windont.lua index 692eb8d..77ed36a 100644 --- a/windont/windont.lua +++ b/windont/windont.lua @@ -398,7 +398,7 @@ windont.newWindow = function( x, y, width, height, misc ) isColor = expect(misc.isColor, term.isColor(), "boolean"), -- if true, then it's an advanced computer transformation = expect(misc.transformation, nil, "function"), -- function that transforms the char/text/back dots of the window - metaTransformation = expect(misc.miscTransformation, nil, "function"), -- function that transforms the whole output.meta function + metaTransformation = expect(misc.metaTransformation, nil, "function"), -- function that transforms the whole output.meta function cursorX = expect(misc.cursorX, 1), cursorY = expect(misc.cursorY, 1),