From e995cf13554ceb2df152f29d0422884c8cdf7b79 Mon Sep 17 00:00:00 2001 From: roygbyte <82218266+roygbyte@users.noreply.github.com> Date: Mon, 15 Nov 2021 04:02:00 -0400 Subject: [PATCH] Fix typo in ListView doc (#8444) --- frontend/ui/widget/listview.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/ui/widget/listview.lua b/frontend/ui/widget/listview.lua index 6617ef191..600ec3263 100644 --- a/frontend/ui/widget/listview.lua +++ b/frontend/ui/widget/listview.lua @@ -17,7 +17,7 @@ Example: background = Blitbuffer.COLOR_WHITE, TextWidget:new{ text = "foo", - fact = Font:getFace("cfont"), + face = Font:getFace("cfont"), } }, FrameContainer:new{ @@ -25,7 +25,7 @@ Example: background = Blitbuffer.COLOR_LIGHT_GRAY, TextWidget:new{ text = "bar", - fact = Font:getFace("cfont"), + face = Font:getFace("cfont"), } }, -- You can add as many widgets as you want here...