From 739d6813c0531d7ef211cd7e9eb9d362ae8e9c00 Mon Sep 17 00:00:00 2001 From: Hasaabitt <50884531+Hasaabitt@users.noreply.github.com> Date: Sun, 24 Apr 2022 16:56:31 -0400 Subject: [PATCH] Fixed typo "Instead, it is a standard program, which its API into the programs that it launches." becomes "Instead, it is a standard program, which injects its API into the programs that it launches." --- .../resources/data/computercraft/lua/rom/programs/shell.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/data/computercraft/lua/rom/programs/shell.lua b/src/main/resources/data/computercraft/lua/rom/programs/shell.lua index f24c0c4fc..f2649f47a 100644 --- a/src/main/resources/data/computercraft/lua/rom/programs/shell.lua +++ b/src/main/resources/data/computercraft/lua/rom/programs/shell.lua @@ -3,7 +3,7 @@ -- It allows you to @{run|start programs}, @{setCompletionFunction|add -- completion for a program}, and much more. -- --- @{shell} is not a "true" API. Instead, it is a standard program, which its +-- @{shell} is not a "true" API. Instead, it is a standard program, which injects its -- API into the programs that it launches. This allows for multiple shells to -- run at the same time, but means that the API is not available in the global -- environment, and so is unavailable to other @{os.loadAPI|APIs}.