Skip to content

Commit

Permalink
qht: fix kernel-doc markup in qht.h
Browse files Browse the repository at this point in the history
While at it, s/stuct/struct/.

Signed-off-by: Emilio G. Cota <[email protected]>
Signed-off-by: Michael Tokarev <[email protected]>
  • Loading branch information
cota authored and Michael Tokarev committed Dec 18, 2017
1 parent 55bbc86 commit 6b1a756
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/qemu/qht.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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().
*/
Expand Down

0 comments on commit 6b1a756

Please sign in to comment.