Skip to content

Commit

Permalink
docs: further man page improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
hansu committed Nov 1, 2024
1 parent 4271ec7 commit 547d516
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/hal/components/abs.comp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/hal/components/abs_s32.comp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/hal/components/abs_s64.comp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 547d516

Please sign in to comment.