diff mbox series

[4/4] kernel-shark-qt: Fix Doxygen doc. for libkshark-model.c

Message ID 20180829162927.20200-4-y.karadz@gmail.com (mailing list archive)
State Accepted
Headers show
Series [1/4] kernel-shark-qt: Change "pevent_" to "tep_" in Doxygen. | expand

Commit Message

Yordan Karadzhov Aug. 29, 2018, 4:29 p.m. UTC
This patch corrects some typos in the Doxygen documentation of
libkshark-model.c

Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>
---
 kernel-shark-qt/src/libkshark-model.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Steven Rostedt Aug. 29, 2018, 4:34 p.m. UTC | #1
On Wed, 29 Aug 2018 19:29:27 +0300
"Yordan Karadzhov (VMware)" <y.karadz@gmail.com> wrote:

> This patch corrects some typos in the Doxygen documentation of
> libkshark-model.c
> 
> Signed-off-by: Yordan Karadzhov (VMware) <y.karadz@gmail.com>


I applied all these and pushed them out.

Thanks Yordan!

-- Steve
diff mbox series

Patch

diff --git a/kernel-shark-qt/src/libkshark-model.c b/kernel-shark-qt/src/libkshark-model.c
index 3138257..246a60c 100644
--- a/kernel-shark-qt/src/libkshark-model.c
+++ b/kernel-shark-qt/src/libkshark-model.c
@@ -5,7 +5,7 @@ 
  */
 
  /**
-  *  @file    libkshark.c
+  *  @file    libkshark-model.c
   *  @brief   Visualization model for FTRACE (trace-cmd) data.
   */
 
@@ -16,13 +16,13 @@ 
 // KernelShark
 #include "libkshark-model.h"
 
-/* The index of the Upper Overflow bin. */
+/** The index of the Upper Overflow bin. */
 #define UOB(histo) (histo->n_bins)
 
-/* The index of the Lower Overflow bin. */
+/** The index of the Lower Overflow bin. */
 #define LOB(histo) (histo->n_bins + 1)
 
-/* For all bins */
+/** For all bins. */
 # define ALLB(histo) LOB(histo)
 
 /**