1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-29 01:21:07 +02:00

Merge pull request #211 from wikibook/master

Correct some translations
This commit is contained in:
Adam Bard
2013-08-13 19:51:07 -07:00
2 changed files with 4 additions and 4 deletions

View File

@@ -327,7 +327,7 @@ seymour:makeSound() -- 'woof woof woof' -- 4.
-- 필요할 경우, 하위 클래스의 new()는 기반 클래스의 new()와 유사합니다.
function LoudDog:new()
newObj = {}
-- set up newObj
-- newObj를 구성
self.__index = self
return setmetatable(newObj, self)
end