doc: Fix doc build.
diff --git a/include/cmocka.h b/include/cmocka.h
index 58cdd47..67c4ef6 100644
--- a/include/cmocka.h
+++ b/include/cmocka.h
@@ -540,11 +540,11 @@
  *
  * @param[in]  #parameter The name of the parameter passed to the function.
  *
- * @param[in]  minimum  The value to check.
+ * @param[in]  value  The value to check.
  *
  * @see check_expected().
  */
-void expect_value(#function, #parameter, uintmax_t value)
+void expect_value(#function, #parameter, uintmax_t value);
 #else
 #define expect_value(function, parameter, value) \
     expect_value_count(function, parameter, value, 1)
@@ -560,7 +560,7 @@
  *
  * @param[in]  #parameter The name of the parameter passed to the function.
  *
- * @param[in]  minimum  The value to check.
+ * @param[in]  value  The value to check.
  *
  * @param[in]  count  The count parameter returns the number of times the value
  *                    should be returned by check_expected(). If count is set
@@ -568,7 +568,7 @@
  *
  * @see check_expected().
  */
-void expect_value_count(#function, #parameter, uintmax_t value, size_t count)
+void expect_value_count(#function, #parameter, uintmax_t value, size_t count);
 #else
 #define expect_value_count(function, parameter, value, count) \
     _expect_value(#function, #parameter, __FILE__, __LINE__, \
@@ -585,11 +585,11 @@
  *
  * @param[in]  #parameter The name of the parameter passed to the function.
  *
- * @param[in]  minimum  The value to check.
+ * @param[in]  value  The value to check.
  *
  * @see check_expected().
  */
-void expect_not_value(#function, #parameter, uintmax_t value)
+void expect_not_value(#function, #parameter, uintmax_t value);
 #else
 #define expect_not_value(function, parameter, value) \
     expect_not_value_count(function, parameter, value, 1)
@@ -605,7 +605,7 @@
  *
  * @param[in]  #parameter The name of the parameter passed to the function.
  *
- * @param[in]  minimum  The value to check.
+ * @param[in]  value  The value to check.
  *
  * @param[in]  count  The count parameter returns the number of times the value
  *                    should be returned by check_expected(). If count is set
@@ -613,7 +613,7 @@
  *
  * @see check_expected().
  */
-void expect_not_value_count(#function, #parameter, uintmax_t value, size_t count)
+void expect_not_value_count(#function, #parameter, uintmax_t value, size_t count);
 #else
 #define expect_not_value_count(function, parameter, value, count) \
     _expect_not_value(#function, #parameter, __FILE__, __LINE__, \