Skip to content

Commit ad8962b

Browse files
committed
docs: fix text wrapping in REPL text files
Propagates fix from d69f7f9 ("docs: fix text wrapping in repl text file") to sibling REPL files whose prose paragraphs exceeded the 80-column width policy documented in docs/contributing/repl_text.md. Wraps the offending line in `utils/define-properties` while keeping `Default: undefined.` inline per the file's existing convention, and wraps the `normalize.assign` description in `number/float32/base/normalize` at the natural word boundary.
1 parent e678093 commit ad8962b

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib

lib/node_modules/@stdlib/number/float32/base/normalize/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040

4141
{{alias}}.assign( x, out, stride, offset )
42-
Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp` and
43-
assigns results to a provided output array.
42+
Returns a normal number `y` and exponent `exp` satisfying `x = y * 2^exp`
43+
and assigns results to a provided output array.
4444

4545
The first element of the returned array corresponds to `y` and the second to
4646
`exp`.

lib/node_modules/@stdlib/utils/define-properties/docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
- set: function which serves as a setter for the property, or, if no setter,
3535
undefined. When assigning a property value, a setter function is called with
3636
one argument (the value being assigned to the property) and with the `this`
37-
context set to the object through which the property is assigned. Default: undefined.
37+
context set to the object through which the property is
38+
assigned. Default: undefined.
3839

3940
Parameters
4041
----------

0 commit comments

Comments
 (0)