summaryrefslogtreecommitdiffhomepage
path: root/ko-kr/lua-kr.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-08-13 19:51:07 -0700
committerAdam Bard <github@adambard.com>2013-08-13 19:51:07 -0700
commit2743ae4927d0cb96083674b140ce873f4d193cd9 (patch)
tree87228c7f16fcdbfc0bdbc089030fbf9a1009bf1e /ko-kr/lua-kr.html.markdown
parent6bac8c1122e6a021ba0094d5ca9a014e4c3f1ef3 (diff)
parente7eb0e1281d0f360ddca17a9b97be4c363c2c276 (diff)
Merge pull request #211 from wikibook/master
Correct some translations
Diffstat (limited to 'ko-kr/lua-kr.html.markdown')
-rw-r--r--ko-kr/lua-kr.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/ko-kr/lua-kr.html.markdown b/ko-kr/lua-kr.html.markdown
index 2badf734..04d119c4 100644
--- a/ko-kr/lua-kr.html.markdown
+++ b/ko-kr/lua-kr.html.markdown
@@ -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