Misc. typo and whitespace fixes

Found via `codespell -q 3 -L "uint,bae,objext,cmo,goin,struc,ois,upto"`
whitespaces were unintentionally fixed due to my editors settings.

Rebased patch #1327
This commit is contained in:
luz.paz 2018-09-15 08:26:20 -04:00 committed by William S Fulton
commit ed28e7cbe2
8 changed files with 32 additions and 32 deletions

View file

@ -6,7 +6,7 @@ local env = _ENV -- Lua 5.2
if not env then env = getfenv () end -- Lua 5.1
setmetatable(env, {__index=function (t,i) error("undefined global variable `"..i.."'",2) end})
-- trying to instantiate pure virual classes
-- trying to instantiate pure virtual classes
-- should fail
assert(pcall(abstract_access.A)==false)
assert(pcall(abstract_access.B)==false)