Fixed typo of "miscTransformation"

It should have been "metaTransformation", oops
This commit is contained in:
LDDestroier 2020-04-13 19:45:35 -04:00 committed by GitHub
parent 29424e4420
commit baadd88bcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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),