summaryrefslogtreecommitdiff
path: root/doc.ko
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2023-01-23 11:27:18 -0500
committerLeonard Richardson <leonardr@segfault.org>2023-01-23 11:27:18 -0500
commitd84821852a32d1314a8fcb5fa4180e3beecea39c (patch)
tree915b376447d213a6946c856081b63a7291d155f6 /doc.ko
parente8008c8eb15f87543bc88c44e13fc921bf4b0212 (diff)
Corrected a typo in several translations of the documentation.
Diffstat (limited to 'doc.ko')
-rw-r--r--doc.ko/index.html2
1 files changed, 1 insertions, 1 deletions
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")
# &lt;a class="sister" href="http://example.com/tillie" id="link3"&gt;Tillie&lt;/a&gt;;
# and they lived at the bottom of a well.&lt;/p&gt;
-a_string.find_parents("p", class="title")
+a_string.find_parents("p", class_="title")
# []</pre>
</div>
<p>세가지 &lt;a&gt; 태그 중 하나는 해당 문자열의 직계 부모이다. 그래서 탐색해서 그것을 찾는다. 세가지 &lt;p&gt; 태그 중 하나는 그 문자열의 방계 부모이고, 그것도 역시 잘 탐색한다. CSS 클래스가“title”인 &lt;p&gt; 태그가 문서 <cite>어딘가에</cite> 존재하지만, 그것은 이 문자열의 부모가 아니므로, <tt class="docutils literal"><span class="pre">find_parents()</span></tt>로 부모를 찾을 수 없다.</p>