From 989ac6cc15a3916bd13c56db09a74b620f9bdab2 Mon Sep 17 00:00:00 2001 From: liamHowatt Date: Thu, 21 Aug 2025 16:12:27 -0400 Subject: [PATCH] docs(observer): minor grammar corrections --- docs/src/details/auxiliary-modules/observer/observer.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/details/auxiliary-modules/observer/observer.rst b/docs/src/details/auxiliary-modules/observer/observer.rst index 23926bf31d..0a65de2275 100644 --- a/docs/src/details/auxiliary-modules/observer/observer.rst +++ b/docs/src/details/auxiliary-modules/observer/observer.rst @@ -515,9 +515,9 @@ If ``NULL`` is passed for the ``format_string`` argument: Spangroup's Span ~~~~~~~~~~~~~~~~ -Very similarly to Label Text binding a Span's text can be bound to a subject as well. +Very similar to Label-text binding, a Span's text can be bound to a subject as well. -The only difference is that in the bind function both the spangroup and the span needs to be specified: +The only difference is that in the bind function both the Spangroup and the Span need to be specified: :cpp:expr:`lv_spangroup_bind_span_text(spangroup, span1, &subject, format_string)` @@ -580,7 +580,7 @@ Scale's Section ~~~~~~~~~~~~~~~ This method of subscribing to an integer Subject affects a Section of a Scale Widget's integer -minimum or maximum values directly. Note that this is a one way binding (Subject ==> Widget) +minimum or maximum values directly. Note that this is a one-way binding (Subject ==> Widget) as the Scale Section's boundaries are not interactive. (Requires :c:macro:`LV_USE_SCALE` to be configured to ``1``.)