aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriubns <iubns@naver.com>2021-05-08 14:53:59 +0900
committerGitHub <noreply@github.com>2021-05-08 14:53:59 +0900
commit9d44c5f911d2e22da70737c1576f6e065bebab57 (patch)
treee82eb5577c9a559077d30ab3d64bca2d5560edd4
parent8eb15adf99861d738e8861666fd47b92ccd01847 (diff)
downloadtranslated-content-9d44c5f911d2e22da70737c1576f6e065bebab57.tar.gz
translated-content-9d44c5f911d2e22da70737c1576f6e065bebab57.tar.bz2
translated-content-9d44c5f911d2e22da70737c1576f6e065bebab57.zip
Fix: 404 in example at javascript/object/seal (#641)
Fix: 404 in example at javascript/object/seal
-rw-r--r--files/ko/web/javascript/reference/global_objects/object/seal/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/object/seal/index.html b/files/ko/web/javascript/reference/global_objects/object/seal/index.html
index c97f71c26d..c04ca07dde 100644
--- a/files/ko/web/javascript/reference/global_objects/object/seal/index.html
+++ b/files/ko/web/javascript/reference/global_objects/object/seal/index.html
@@ -14,7 +14,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/Object/seal
<p><code><strong>Object.seal()</strong></code> 메서드는 객체를 밀봉합니다. 객체를 밀봉하면 그 객체에는 새로운 속성을 추가할 수 없고, 현재 존재하는 모든 속성을 설정 불가능 상태로 만들어줍니다. 하지만 쓰기 가능한 속성의 값은 밀봉 후에도 변경할 수 있습니다(역자 주 : 바로 이 점이 <code>Object.freeze()</code>와의 차이라고 할 수 있습니다).</p>
-<div>{{EmbedInteractiveExample("pages/js/object-prototype-seal.html")}}</div>
+<div>{{EmbedInteractiveExample("pages/js/object-seal.html")}}</div>