From d84821852a32d1314a8fcb5fa4180e3beecea39c Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Mon, 23 Jan 2023 11:27:18 -0500 Subject: Corrected a typo in several translations of the documentation. --- doc.ko/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc.ko') diff --git a/doc.ko/index.html b/doc.ko/index.html index 48f4de9..c474071 100644 --- a/doc.ko/index.html +++ b/doc.ko/index.html @@ -1225,7 +1225,7 @@ a_string.find_parent("p") # <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>; # and they lived at the bottom of a well.</p> -a_string.find_parents("p", class="title") +a_string.find_parents("p", class_="title") # []

세가지 <a> 태그 중 하나는 해당 문자열의 직계 부모이다. 그래서 탐색해서 그것을 찾는다. 세가지 <p> 태그 중 하나는 그 문자열의 방계 부모이고, 그것도 역시 잘 탐색한다. CSS 클래스가“title”인 <p> 태그가 문서 어딘가에 존재하지만, 그것은 이 문자열의 부모가 아니므로, find_parents()로 부모를 찾을 수 없다.

-- cgit v1.2.3