diff --git a/src/class.c b/src/class.c
index 35c3aa040..05b549b3e 100644
--- a/src/class.c
+++ b/src/class.c
@@ -1174,11 +1174,11 @@ mrb_instance_alloc(mrb_state *mrb, mrb_value cv)
* call-seq:
* class.new(args, ...) -> obj
*
- * Calls allocate to create a new object of
- * class's class, then invokes that object's
- * initialize method, passing it args.
- * This is the method that ends up getting called whenever
- * an object is constructed using .new.
+ * Creates a new object of class's class, then
+ * invokes that object's initialize method,
+ * passing it args. This is the method that ends
+ * up getting called whenever an object is constructed using
+ * `.new`.
*
*/