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 |
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 --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) /**
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(-)