diff options
| author | Emilio G. Cota | 2017-10-19 00:01:43 +0200 |
|---|---|---|
| committer | Michael Tokarev | 2017-12-18 15:07:02 +0100 |
| commit | 6b1a756112c35d1243831b81609e321f0ffdaa21 (patch) | |
| tree | 459f71b8c542e56b65209bbdb3e06890f78f43c7 /include | |
| parent | translate-all: fix 'consisits' typo in comment (diff) | |
| download | qemu-6b1a756112c35d1243831b81609e321f0ffdaa21.tar.gz qemu-6b1a756112c35d1243831b81609e321f0ffdaa21.tar.xz qemu-6b1a756112c35d1243831b81609e321f0ffdaa21.zip | |
qht: fix kernel-doc markup in qht.h
While at it, s/stuct/struct/.
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include')
| -rw-r--r-- | include/qemu/qht.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/qemu/qht.h b/include/qemu/qht.h index 56c2c7784c..531aa95325 100644 --- a/include/qemu/qht.h +++ b/include/qemu/qht.h @@ -166,7 +166,7 @@ void qht_iter(struct qht *ht, qht_iter_func_t func, void *userp); /** * qht_statistics_init - Gather statistics from a QHT * @ht: QHT to gather statistics from - * @stats: pointer to a struct qht_stats to be filled in + * @stats: pointer to a &struct qht_stats to be filled in * * Does NOT need to be called under an RCU read-critical section, * since it does not dereference any pointers stored in the hash table. @@ -177,8 +177,8 @@ void qht_iter(struct qht *ht, qht_iter_func_t func, void *userp); void qht_statistics_init(struct qht *ht, struct qht_stats *stats); /** - * qht_statistics_destroy - Destroy a struct qht_stats - * @stats: stuct qht_stats to be destroyed + * qht_statistics_destroy - Destroy a &struct qht_stats + * @stats: &struct qht_stats to be destroyed * * See also: qht_statistics_init(). */ |
