From 9d18487dc5a352fe188eee192648909d42d466f8 Mon Sep 17 00:00:00 2001 From: Ivo Leal <62177040+IvoLeal72@users.noreply.github.com> Date: Sun, 28 Aug 2022 15:24:47 +0100 Subject: [PATCH] Fixed usage example of textuils.pagedTabulate --- .../resources/data/computercraft/lua/rom/apis/textutils.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua b/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua index e5bc459f5..2d5b6101d 100644 --- a/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua +++ b/src/main/resources/data/computercraft/lua/rom/apis/textutils.lua @@ -259,7 +259,7 @@ input should the whole output not fit on the display. local rows = {} for i = 1, 30 do rows[i] = {("Row #%d"):format(i), math.random(1, 400)} end - textutils.tabulate(colors.orange, {"Column", "Value"}, colors.lightBlue, table.unpack(rows)) + textutils.pagedTabulate(colors.orange, {"Column", "Value"}, colors.lightBlue, table.unpack(rows)) ]] function pagedTabulate(...) return tabulateCommon(true, ...)