From 36b47ba98d3e7ee770944279a8c6b601d4f3e7fb Mon Sep 17 00:00:00 2001 From: user-0 Date: Sun, 24 Mar 2019 00:07:16 +0200 Subject: [PATCH] FIX margin get function documentation --- src/lv_objx/lv_chart.c | 4 ++-- src/lv_objx/lv_chart.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lv_objx/lv_chart.c b/src/lv_objx/lv_chart.c index 3a3f28343..43b7cf1d6 100644 --- a/src/lv_objx/lv_chart.c +++ b/src/lv_objx/lv_chart.c @@ -524,9 +524,9 @@ void lv_chart_refresh(lv_obj_t * chart) } /** - * Set the margin around the chart, used for axes value and labels + * Get the margin around the chart, used for axes value and labels * @param chart pointer to an chart object - * @param return margin value of the margin + * @param return value of the margin */ uint16_t lv_chart_get_margin(lv_obj_t* chart) { diff --git a/src/lv_objx/lv_chart.h b/src/lv_objx/lv_chart.h index 23e20daf2..3448c2c7f 100644 --- a/src/lv_objx/lv_chart.h +++ b/src/lv_objx/lv_chart.h @@ -293,9 +293,9 @@ static inline lv_style_t* lv_chart_get_style(const lv_obj_t *chart) } /** - * Set the margin around the chart, used for axes value and labels + * Get the margin around the chart, used for axes value and labels * @param chart pointer to an chart object - * @param return margin value of the margin + * @param return value of the margin */ uint16_t lv_chart_get_margin(lv_obj_t* chart);