Remove stray | in comment
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index dd369a9..8d61362 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -578,7 +578,7 @@
 	 * Quadrupling the size improves average dictionary sparseness
 	 * (reducing collisions) at the cost of some memory and iteration
 	 * speed (which loops over every possible entry).  It also halves
-|	 * the number of expensive resize operations in a growing dictionary.
+	 * the number of expensive resize operations in a growing dictionary.
 	 *
 	 * Very large dictionaries (over 50K items) use doubling instead.
 	 * This may help applications with severe memory constraints.