Skip to content

Commit

Permalink
expr: remove manual word breaks in pod (#913)
Browse files Browse the repository at this point in the history
* Similar to recent commit for uniq: 4d22ee8
* Breaking up words like "re-\nturn" gets in the way of the pod formatter
  • Loading branch information
mknos authored Jan 7, 2025
1 parent 14d8a63 commit 39c99b9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions bin/expr
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@ to an empty string or zero; otherwise, returns zero.
=item expr1 {=, >, >=, <, <=, !=} expr2
Returns the results of integer comparison if both arguments are
integers; otherwise, returns the results of string comparison us-
ing the locale-specific collation sequence. The result of each
integers; otherwise, returns the results of string comparison
using the locale-specific collation sequence. The result of each
comparison is 1 if the specified relation is true, or 0 if the
relation is false.
Expand All @@ -372,8 +372,8 @@ arguments.
=item expr1 {*, /, %} expr2
Returns the results of multiplication, integer division, or re-
mainder of integer-valued arguments.
Returns the results of multiplication, integer division, or
remainder of integer-valued arguments.
=item expr1 : expr2
Expand All @@ -382,10 +382,10 @@ a regular expression. The regular expression is anchored to
the beginning of the string with an implicit ``^''. The
regular expression language is perlre(1).
If the match succeeds and the pattern contains at least one regu-
lar expression subexpression ``(...)'', the string correspond-
ing to ``$1'' is returned; otherwise the matching operator re-
turns the number of characters matched. If the match fails and
If the match succeeds and the pattern contains at least one regular
expression subexpression ``(...)'', the string corresponding
to ``$1'' is returned; otherwise the matching operator
returns the number of characters matched. If the match fails and
the pattern contains a regular expression subexpression the null
string is returned; otherwise 0.
Expand Down

0 comments on commit 39c99b9

Please sign in to comment.