Skip to content

Commit

Permalink
fix: remove example whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Glinkis committed Jun 26, 2024
1 parent 101e65b commit ae589f1
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/array/closestNumber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
*
* @example
* ```js
*
* // Returns 10
* getClosestNumber([0, 10, 20], 12);
* ```
Expand Down
1 change: 0 additions & 1 deletion src/array/intersperse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
*
* @example
* ```js
*
* intersperse(["a", "b", "c"], "x"); // => ["a", "x", "b", "x", "c"]
* ```
*/
Expand Down
1 change: 0 additions & 1 deletion src/array/nodeListToArray.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*
* @example
* ```js
*
* // => [div, div, …]
* toArray(document.querySelectorAll('div'));
* ```
Expand Down
1 change: 0 additions & 1 deletion src/math/clamp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { clampMin } from "./clampMin";
*
* @example
* ```js
*
* clamp(5, 0, 10); // Returns 5
* clamp(-10, 0, 10); // Returns 0
* clamp(20, 0, 10); // Returns 10
Expand Down

0 comments on commit ae589f1

Please # to comment.