#8030: more docstring fix for builtin types.
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 517c20c..be25176 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -2327,9 +2327,9 @@
 }
 
 PyDoc_STRVAR(dictionary_doc,
-"dict() -> new empty dictionary.\n"
+"dict() -> new empty dictionary\n"
 "dict(mapping) -> new dictionary initialized from a mapping object's\n"
-"    (key, value) pairs.\n"
+"    (key, value) pairs\n"
 "dict(iterable) -> new dictionary initialized as if via:\n"
 "    d = {}\n"
 "    for k, v in iterable:\n"