args doesn't need to be a tuple (closes #17210)
diff --git a/Doc/c-api/unicode.rst b/Doc/c-api/unicode.rst
index ddeaaa2..4ef437c 100644
--- a/Doc/c-api/unicode.rst
+++ b/Doc/c-api/unicode.rst
@@ -1108,7 +1108,7 @@
 .. c:function:: PyObject* PyUnicode_Format(PyObject *format, PyObject *args)
 
    Return a new string object from *format* and *args*; this is analogous to
-   ``format % args``.  The *args* argument must be a tuple.
+   ``format % args``.
 
 
 .. c:function:: int PyUnicode_Contains(PyObject *container, PyObject *element)