aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Toshiyuki Sasaki <ansasaki@redhat.com>2019-03-15 13:28:41 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-03-28 13:31:58 +0100
commit4c5639246c1cce6e695eba66cfd9d0ff92af6a91 (patch)
tree7abf20110afe7b1afc798cca572b23ba5f9f7080
parentf33b5cee614bc25ad2641a0eabdcefbe16585fc5 (diff)
downloadcmocka-4c5639246c1cce6e695eba66cfd9d0ff92af6a91.tar.gz
cmocka-4c5639246c1cce6e695eba66cfd9d0ff92af6a91.tar.xz
cmocka-4c5639246c1cce6e695eba66cfd9d0ff92af6a91.zip
include: Fixed typo in documentation
Signed-off-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--include/cmocka.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cmocka.h b/include/cmocka.h
index adf814e..3fb4767 100644
--- a/include/cmocka.h
+++ b/include/cmocka.h
@@ -2358,7 +2358,7 @@ void cmocka_set_message_output(enum cm_message_output output);
/**
* @brief Set a pattern to only run the test matching the pattern.
*
- * This allows to filter tests and only run the ones matching the pattern. Thep
+ * This allows to filter tests and only run the ones matching the pattern. The
* pattern can include two wildards. The first is '*', a wildcard that matches
* zero or more characters, or ‘?’, a wildcard that matches exactly one
* character.