Skip to content

Commit 6751370

Browse files
committed
Fix pospell "Occurred" c-api/iter
1 parent 8b0719f commit 6751370

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

c-api/iter.po

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2024-11-21 16:38-0300\n"
14-
"PO-Revision-Date: 2025-04-10 22:41+0200\n"
14+
"PO-Revision-Date: 2025-04-10 22:58+0200\n"
1515
"Last-Translator: David Spindola\n"
1616
"Language-Team: python-doc-es\n"
1717
"Language: es\n"
@@ -96,8 +96,8 @@ msgid ""
9696
" /* continue doing useful work */\n"
9797
"}"
9898
msgstr ""
99-
"PyObject ``*iterator`` = PyObject_GetIter(obj);\n"
100-
"PyObject ``*item``;\n"
99+
"``PyObject`` ``*iterator`` = ``PyObject_GetIter(obj)``;\n"
100+
"``PyObject`` ``*item``;\n"
101101
"\n"
102102
"if (iterator == NULL) {\n"
103103
" ``/*`` propaga el error ``*/``\n"
@@ -108,13 +108,13 @@ msgstr ""
108108
" ``/*`` hace algo con *item* ``*/``\n"
109109
" ...\n"
110110
" ``/*`` libera la referencia cuando termina ``*/``\n"
111-
" Py_DECREF(item);\n"
111+
" ``Py_DECREF(item)``;\n"
112112
"\n"
113113
"}\n"
114114
"\n"
115-
"Py_DECREF(iterator);\n"
115+
"``Py_DECREF(iterator)``;\n"
116116
"\n"
117-
"if (PyErr_Occurred()) {\n"
117+
"if (``PyErr_Occurred()``) {\n"
118118
" ``/*`` propaga el error ``*/``\n"
119119
"\n"
120120
"}\n"

0 commit comments

Comments
 (0)