1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-12 19:20:29 +00:00

Merge pull request #262 from Lignum/fix-spelling

Fix some minor spelling mistakes
This commit is contained in:
Daniel Ratcliffe 2017-05-19 18:49:48 +01:00 committed by GitHub
commit d822147704
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
--[[
Alright then, don't ignore me. This file is to ensure the existance of the "autorun" folder, files placed in this folder
Alright then, don't ignore me. This file is to ensure the existence of the "autorun" folder, files placed in this folder
using resource packs will always run when computers startup.
]]

View File

@ -6,7 +6,7 @@ New Features in ComputerCraft 1.80:
* os.time() and os.day() now accept parameters to give the real world time.
* Added os.epoch()
* Monitor text now glows in the dark.
* Added a "Pocket Computer upgrde API" so mod developers can add their own pocket upgrades.
* Added a "Pocket Computer upgrade API" so mod developers can add their own pocket upgrades.
* Added pocket.equipBack()/pocket.unequipBack() to add/remove pocket upgrades.
* Added term.setPaletteColor()/term.getPaletteColor() to change/check colors
* Added colors.rgb8()/colours.rgb8()

View File

@ -6,7 +6,7 @@ New Features in ComputerCraft 1.80:
* os.time() and os.day() now accept parameters to give the real world time.
* Added os.epoch()
* Monitor text now glows in the dark.
* Added a "Pocket Computer upgrde API" so mod developers can add their own pocket upgrades.
* Added a "Pocket Computer upgrade API" so mod developers can add their own pocket upgrades.
* Added pocket.equipBack()/pocket.unequipBack() to add/remove pocket upgrades.
* Added term.setPaletteColor()/term.getPaletteColor() to change/check colors
* Added colors.rgb8()/colours.rgb8()

View File

@ -75,7 +75,7 @@ local function createShellEnv( sDir )
return package.loaded[name]
end
local sError = "Error loading modile '" .. name .. "':"
local sError = "Error loading module '" .. name .. "':"
for n,searcher in ipairs(package.loaders) do
local loader, err = searcher(name)
if loader then