From 1f3da5205ca6deb74e08566f3ada8ed684819669 Mon Sep 17 00:00:00 2001 From: Adit Cahya Ramadhan Date: Sat, 21 Jun 2025 22:29:04 +0700 Subject: [PATCH] Miniscule typo fix in the shell.path() doc comment Noticed this when reading the shell API page in the wiki. --- .../resources/data/computercraft/lua/rom/programs/shell.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/programs/shell.lua b/projects/core/src/main/resources/data/computercraft/lua/rom/programs/shell.lua index eedf27eb0..c6198247f 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/programs/shell.lua +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/programs/shell.lua @@ -300,7 +300,7 @@ function shell.setDir(dir) sDir = fs.combine(dir, "") end ---- Set the path where programs are located. +--- Get the path where programs are located. -- -- The path is composed of a list of directory names in a string, each separated -- by a colon (`:`). On normal turtles will look in the current directory (`.`),