Skip to content

Commit 1da9f11

Browse files
committed
Correcting writing style in re.search and re.match
1 parent e618983 commit 1da9f11

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

library/re.po

Lines changed: 5 additions & 5 deletions
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: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2020-05-24 07:59+0200\n"
14+
"PO-Revision-Date: 2020-05-24 08:00+0200\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1445,7 +1445,7 @@ msgid ""
14451445
"string matches the pattern; note that this is different from finding a zero-"
14461446
"length match at some point in the string."
14471447
msgstr ""
1448-
"Examina a través de *string* (la cadena) buscando el primer lugar donde el "
1448+
"Examina a través de la *string* (cadena) buscando el primer lugar donde el "
14491449
"*pattern* (patrón) de la expresión regular produce una coincidencia, y "
14501450
"devuelve un :ref:`match object <match-objects>` correspondiente. Devuelve "
14511451
"``None`` si ninguna posición en la cadena coincide con el patrón; notar que "
@@ -1459,7 +1459,7 @@ msgid ""
14591459
"objects>`. Return ``None`` if the string does not match the pattern; note "
14601460
"that this is different from a zero-length match."
14611461
msgstr ""
1462-
"Si cero o más caracteres al principio de *string* (la cadena) coinciden con "
1462+
"Si cero o más caracteres al principio de la *string* (cadena) coinciden con "
14631463
"el *pattern* (patrón) de la expresión regular, devuelve un :ref:`match "
14641464
"object <match-objects>` correspondiente. Devuelve ``None`` si la cadena no "
14651465
"coincide con el patrón; notar que esto es diferente de una coincidencia de "
@@ -1478,8 +1478,8 @@ msgid ""
14781478
"If you want to locate a match anywhere in *string*, use :func:`search` "
14791479
"instead (see also :ref:`search-vs-match`)."
14801480
msgstr ""
1481-
"Si se quiere localizar una coincidencia en cualquier lugar de *string* (la "
1482-
"cadena), se utiliza :func:`search` en su lugar (ver también :ref:`search-vs-"
1481+
"Si se quiere localizar una coincidencia en cualquier lugar de la *string* "
1482+
"(cadena), se utiliza :func:`search` en su lugar (ver también :ref:`search-vs-"
14831483
"match`)."
14841484

14851485
#: ../Doc/library/re.rst:772

0 commit comments

Comments
 (0)