diff --git a/ext/cvmat.cpp b/ext/cvmat.cpp
index 07913be..3b6539a 100644
--- a/ext/cvmat.cpp
+++ b/ext/cvmat.cpp
@@ -4419,7 +4419,7 @@ rb_hough_lines(int argc, VALUE *argv, VALUE self)
/*
* call-seq:
- * hough_line_standard(rho, theta, threshold) -> cvseq(include CvLine)
+ * hough_lines_standard(rho, theta, threshold) -> cvseq(include CvLine)
*
* Finds lines in binary image using standard(classical) Hough transform.
* * rho - Distance resolution in pixel-related units.
@@ -4438,7 +4438,7 @@ rb_hough_lines_standard(VALUE self, VALUE rho, VALUE theta, VALUE threshold)
/*
* call-seq:
- * hough_line_probabilistic(rho, theta, threshold, min_length, max_gap) -> cvseq(include CvTwoPoints)
+ * hough_lines_probabilistic(rho, theta, threshold, min_length, max_gap) -> cvseq(include CvTwoPoints)
*
* Finds lines in binary image using probabilistic Hough transform.
* * rho - Distance resolution in pixel-related units.
@@ -4460,7 +4460,7 @@ rb_hough_lines_probabilistic(VALUE self, VALUE rho, VALUE theta, VALUE threshold
/*
* call-seq:
- * hough_line_multi_scale(rho, theta, threshold, div_rho, div_theta) -> cvseq(include CvLine)
+ * hough_lines_multi_scale(rho, theta, threshold, div_rho, div_theta) -> cvseq(include CvLine)
*
* Finds lines in binary image using multi-scale variant of classical Hough transform.
* * rho - Distance resolution in pixel-related units.