Skip to content

Commit 8054fb1

Browse files
committed
Closes #517 - update tutorial/datastructures.po to reflect recent changes
1 parent 684e70a commit 8054fb1

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tutorial/datastructures.po

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,10 @@ msgstr ""
5858
"는 리스트의 처음에 삽입하고, ``a.insert(len(a), x)`` 는 ``a.append(x)`` 와 동등합니다."
5959

6060
#: ../Doc/tutorial/datastructures.rst:43
61-
#, fuzzy
6261
msgid ""
6362
"Remove the first item from the list whose value is equal to *x*. It "
6463
"raises a ``ValueError`` if there is no such item."
65-
msgstr "리스트에서 값이 *x* 와 같은 첫 번째 항목을 삭제합니다. 그런 항목이 없으면 에러입니다."
64+
msgstr "리스트에서 값이 *x* 와 같은 첫 번째 항목을 삭제합니다. 그런 항목이 없으면 ``ValueError``\\를 일으킵니다."
6665

6766
#: ../Doc/tutorial/datastructures.rst:50
6867
msgid ""
@@ -538,7 +537,8 @@ msgid ""
538537
"When looping through a sequence, the position index and corresponding "
539538
"value can be retrieved at the same time using the :func:`enumerate` "
540539
"function. ::"
541-
msgstr "시퀀스를 루핑할 때, :func:`enumerate` 함수를 사용하면 위치 인덱스와 대응하는 값을 동시에 얻을 수 있습니다. ::"
540+
msgstr ""
541+
"시퀀스를 루핑할 때, :func:`enumerate` 함수를 사용하면 위치 인덱스와 대응하는 값을 동시에 얻을 수 있습니다. ::"
542542

543543
#: ../Doc/tutorial/datastructures.rst:582
544544
msgid ""
@@ -694,4 +694,3 @@ msgid ""
694694
msgstr ""
695695
"다른 언어들에서는 가변 객체를 돌려주기도 하는데, ``d->insert(\"a\")->remove(\"b\")->sort();`` "
696696
"와 같은 메서드 연쇄를 허락합니다."
697-

0 commit comments

Comments
 (0)