aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryeongkwang <immutable000@gmail.com>2021-12-15 23:20:00 +0900
committerGitHub <noreply@github.com>2021-12-15 23:20:00 +0900
commitd18958308b428c9cf826dfe370e0489444baae3f (patch)
treeac12b754891de1b44a37602f067a455577f68797
parent7a5b783d12cf1ef9553c06c3401155dfd6e67099 (diff)
downloadtranslated-content-d18958308b428c9cf826dfe370e0489444baae3f.tar.gz
translated-content-d18958308b428c9cf826dfe370e0489444baae3f.tar.bz2
translated-content-d18958308b428c9cf826dfe370e0489444baae3f.zip
fix typo in korean (#3367)
읟- > 의
-rw-r--r--files/ko/learn/server-side/django/introduction/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/learn/server-side/django/introduction/index.html b/files/ko/learn/server-side/django/introduction/index.html
index f8034af90e..d142983573 100644
--- a/files/ko/learn/server-side/django/introduction/index.html
+++ b/files/ko/learn/server-side/django/introduction/index.html
@@ -126,7 +126,7 @@ translation_of: Learn/Server-side/Django/Introduction
<h3 id="요청_처리하기_views.py">요청 처리하기 (views.py)</h3>
-<p>뷰들은 웹 클라이언트로부터 HTTP 요청을 수신하고 HTTP 응답을 되돌려주는 웹 어플리케이션의 심장입니다. 그 사이에 그들은 데이터베이스에 접근하고 템플릿을 렌더링하기 위해 프레임워크읟 다른 자원들을 정리합니다.</p>
+<p>뷰들은 웹 클라이언트로부터 HTTP 요청을 수신하고 HTTP 응답을 되돌려주는 웹 어플리케이션의 심장입니다. 그 사이에 그들은 데이터베이스에 접근하고 템플릿을 렌더링하기 위해 프레임워크의 다른 자원들을 정리합니다.</p>
<p>아래 예시는 이전 예시의 URL mapper가 불러올 수 있는 최소 뷰 함수 <code>index()</code>를 보여줍니다. 다른 모든 뷰 함수처럼 이 함수도 <code>HttpRequest</code> 객체를 인자(<code>request</code>)로 받고 <code>HttpResponse</code> 객체를 반환합니다. 이 예시에서는 요청에 관해서는 아무것도 하지 않고, 단순히 하드코딩된 문자열을 반환합니다. 요청에 관련해서는 이후 글에서 더 자세하게 다루겠습니다.</p>