From fec78d0bd88f64228f2a1cb2412c68d937e3b1b8 Mon Sep 17 00:00:00 2001 From: 나상우 Date: Wed, 18 Aug 2021 13:05:32 +0900 Subject: fix: Typo (#2098) * fix: Typo Fix typo * Update index.html --- files/ko/web/http/methods/options/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'files/ko') diff --git a/files/ko/web/http/methods/options/index.html b/files/ko/web/http/methods/options/index.html index 4b4b9a030d..8523cea7d6 100644 --- a/files/ko/web/http/methods/options/index.html +++ b/files/ko/web/http/methods/options/index.html @@ -86,7 +86,7 @@ Origin: http://foo.example Access-Control-Request-Method: POST Access-Control-Request-Headers: X-PINGOTHER, Content-Type -

서버는 {{HTTPHeader("Access-Control-Allow-Methods")}}로 응답하고, POST, GET, 그리고 OPTIONS 메소드를 통해서 해당하는 자원을 문의 (query) 할 수 알려준다. 이 헤더는 {{HTTPHeader("Allow")}} 응답 헤더와 비슷하지만 반드시 CORS 에 한해서만 사용된다. 

+

서버는 {{HTTPHeader("Access-Control-Allow-Methods")}}로 응답하고, POST, GET, 그리고 OPTIONS 메소드를 통해서 해당하는 자원을 문의 (query) 할 수 있다고 알려준다. 이 헤더는 {{HTTPHeader("Allow")}} 응답 헤더와 비슷하지만 반드시 CORS 에 한해서만 사용된다.

HTTP/1.1 200 OK
 Date: Mon, 01 Dec 2008 01:15:39 GMT
-- 
cgit v1.2.3-54-g00ecf


From 5cca4987f063d77d7bfdfece485fcbecb531fde2 Mon Sep 17 00:00:00 2001
From: hochan222 
Date: Sun, 15 Aug 2021 23:02:42 +0900
Subject: refactor: feedback

---
 files/ko/learn/javascript/objects/basics/index.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'files/ko')

diff --git a/files/ko/learn/javascript/objects/basics/index.html b/files/ko/learn/javascript/objects/basics/index.html
index a31c5ed163..fb18fda9f4 100644
--- a/files/ko/learn/javascript/objects/basics/index.html
+++ b/files/ko/learn/javascript/objects/basics/index.html
@@ -78,7 +78,7 @@ person.interests[1]
 person.bio()
 person.greeting()
-

이제 객체 내부에 몇 가지 데이터와 기능이 있으며 이제 멋진 간단한 구문으로 액세스 할 수 있습니다!

+

이제 객체 내부에 몇 가지 데이터와 기능이 있으며, 멋진 간단한 구문으로 액세스 할 수 있습니다!

Note: 만약 여기까지 진행하는데 어려움이 있다면, 제가 만들어놓은 파일과 비교해보세요 — oojs-finished.html (그리고 실행되는 예제도 보세요). Live 버전에서는 텅빈 화면만 보이겠지만, 그게 정상입니다 — 다시, 개발자도구를 열고 객체 구조를 들여다보기 위해 위에 언급된 명령어를 입력해보세요.

@@ -263,7 +263,7 @@ var myVideo = document.querySelector('video');

{{NextMenu("Learn/JavaScript/Objects/Object-oriented_JS", "Learn/JavaScript/Objects")}}

-

이 모듈 에서는

+

이 과정에서는

-