You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .editorconfig
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,6 @@ indent_style = tab
86
86
[*.{f,f.txt}]
87
87
indent_style = space
88
88
indent_size = 2
89
-
insert_final_newline = false
90
89
91
90
# Set properties for shell files:
92
91
[*.{sh,sh.txt}]
@@ -121,7 +120,7 @@ indent_style = tab
121
120
[*.{md,md.txt}]
122
121
indent_style = space
123
122
indent_size = 4
124
-
trim_trailing_whitespace = false
123
+
trim_trailing_whitespace = true # Note: this disables using two spaces to force a hard line break, which is permitted in Markdown. As we don't typically follow that practice (TMK), we should be safe to automatically trim.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,14 +4,15 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2024-12-01)
7
+
## Unreleased (2025-01-20)
8
8
9
9
<sectionclass="commits">
10
10
11
11
### Commits
12
12
13
13
<details>
14
14
15
+
-[`321e49e`](https://github.com/stdlib-js/stdlib/commit/321e49e9965648f1b5eb6a840fe454959af0ec49) - **docs:** add missing periods to list items _(by Philipp Burckhardt)_
15
16
-[`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -113,16 +113,16 @@ ifthenAsync( predicate, x, y, done );
113
113
114
114
The `predicate` function is provided a single argument:
115
115
116
-
-`clbk`: callback to invoke upon `predicate` function completion
116
+
-`clbk`: callback to invoke upon `predicate` function completion.
117
117
118
118
The callback accepts two arguments:
119
119
120
-
-`error`: error object
121
-
-`bool`: condition used to determine whether to invoke `x` or `y`
120
+
-`error`: error object.
121
+
-`bool`: condition used to determine whether to invoke `x` or `y`.
122
122
123
123
Both `x` and `y` are provided a single argument:
124
124
125
-
-`clbk`: callback to invoke upon function completion
125
+
-`clbk`: callback to invoke upon function completion.
126
126
127
127
The callback function accepts any number of arguments, with the first argument reserved for providing an error. If the error argument is falsy, the `done` callback is invoked with its first argument as `null` and all other provided arguments. If the error argument is truthy, the `done` callback is invoked with only an error argument.
128
128
@@ -288,7 +288,7 @@ See [LICENSE][stdlib-license].
0 commit comments