Skip to content

Commit e214da2

Browse files
committed
* src/editfns.c (Fngettext): Fix typos in docstring.
1 parent 82052af commit e214da2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/editfns.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2840,12 +2840,12 @@ usage: (save-restriction &rest BODY) */)
28402840
/* i18n (internationalization). */
28412841

28422842
DEFUN ("ngettext", Fngettext, Sngettext, 3, 3, 0,
2843-
doc: /* Return the translation of MSGID (plural MSGID_PLURAL) depending on N.
2843+
doc: /* Return the translation of MSGID (plural MSGID-PLURAL) depending on N.
28442844
MSGID is the singular form of the string to be converted;
28452845
use it as the key for the search in the translation catalog.
2846-
MSGID_PLURAL is the plural form. Use N to select the proper translation.
2846+
MSGID-PLURAL is the plural form. Use N to select the proper translation.
28472847
If no message catalog is found, MSGID is returned if N is equal to 1,
2848-
otherwise MSGID_PLURAL. */)
2848+
otherwise MSGID-PLURAL. */)
28492849
(Lisp_Object msgid, Lisp_Object msgid_plural, Lisp_Object n)
28502850
{
28512851
CHECK_STRING (msgid);

0 commit comments

Comments
 (0)