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
Display the source diff
Display the rich diff
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)_
-`clbk`: callback to invoke upon function completion
105
+
-`clbk`: callback to invoke upon function completion.
106
106
107
107
The callback accepts two arguments:
108
108
109
-
-`error`: error object
110
-
-`result`: function result
109
+
-`error`: error object.
110
+
-`result`: function result.
111
111
112
112
The `done` callback is invoked upon function completion and is provided two arguments:
113
113
114
-
-`error`: error object
115
-
-`result`: either the result of `x` or the provided value `y`
114
+
-`error`: error object.
115
+
-`result`: either the result of `x` or the provided value `y`.
116
116
117
117
If the function `x` does not return a truthy `error` argument, the `error` argument provided to the `done` callback is `null`. If `x` does return a truthy `error` argument, the `done` callback is invoked with both the `error` and the provided value `y`.
118
118
@@ -228,7 +228,7 @@ See [LICENSE][stdlib-license].
0 commit comments