From 547d51603fda9a2ec694224aa34a78213f054310 Mon Sep 17 00:00:00 2001 From: Hans Unzner Date: Fri, 1 Nov 2024 21:06:00 +0100 Subject: [PATCH] docs: further man page improvements --- src/hal/components/abs.comp | 2 +- src/hal/components/abs_s32.comp | 2 +- src/hal/components/abs_s64.comp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hal/components/abs.comp b/src/hal/components/abs.comp index 8b32b4db1ff..9e3260b5212 100644 --- a/src/hal/components/abs.comp +++ b/src/hal/components/abs.comp @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -component abs "Compute the absolute value and sign of the input signal"; +component abs "Compute the absolute value and sign of a float input signal"; pin in float in "Analog input value" ; pin out float out "Analog output value, always positive"; diff --git a/src/hal/components/abs_s32.comp b/src/hal/components/abs_s32.comp index 631ee577c76..04c72de9ae3 100644 --- a/src/hal/components/abs_s32.comp +++ b/src/hal/components/abs_s32.comp @@ -13,7 +13,7 @@ // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -component abs_s32 "Compute the absolute value and sign of the input signal"; +component abs_s32 "Compute the absolute value and sign of a integer input signal"; pin in s32 in "input value" ; pin out s32 out "output value, always non-negative"; diff --git a/src/hal/components/abs_s64.comp b/src/hal/components/abs_s64.comp index 6e5fede54da..afaf01599af 100644 --- a/src/hal/components/abs_s64.comp +++ b/src/hal/components/abs_s64.comp @@ -15,7 +15,7 @@ // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -component abs_s64 "Compute the absolute value and sign of the input signal"; +component abs_s64 "Computes the absolute value and sign of a 64 bit integer input signal"; pin in s64 in "input value" ; pin out s64 out "output value, always non-negative";