From 0d501f23082fbea475f06ba3936e3e682eac5f33 Mon Sep 17 00:00:00 2001 From: Galunid Date: Sun, 30 Aug 2020 05:27:17 +0200 Subject: [PATCH] [chore] Fix a few typos (#6601) --- frontend/ui/widget/filechooser.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/ui/widget/filechooser.lua b/frontend/ui/widget/filechooser.lua index be14e3374..2443e4c84 100644 --- a/frontend/ui/widget/filechooser.lua +++ b/frontend/ui/widget/filechooser.lua @@ -114,7 +114,7 @@ function FileChooser:init() table.insert(dirs, { name = "./.", fullpath = path, - attr = lfs.attributes(path); + attr = lfs.attributes(path), }) -- If we knew about some content (if we had come up from them -- to this directory), have them shown @@ -363,7 +363,7 @@ function FileChooser:changeToPath(path, focused_path) unreadable_dir_content[path][focused_path] = { name = focused_path:sub(#path+2), fullpath = focused_path, - attr = lfs.attributes(focused_path); + attr = lfs.attributes(focused_path), } end end