Correct signature of __build_class__ (GH-16735)

diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 728ba5b..d79e254 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -260,7 +260,7 @@
 }
 
 PyDoc_STRVAR(build_class_doc,
-"__build_class__(func, name, *bases, metaclass=None, **kwds) -> class\n\
+"__build_class__(func, name, /, *bases, [metaclass], **kwds) -> class\n\
 \n\
 Internal helper function used by the class statement.");