Skip to content

Commit 2c166bb

Browse files
authored
Merge pull request #1324 from jbampton/fix-spelling
Fix spelling
2 parents b2f2369 + 320cae1 commit 2c166bb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

dash-renderer/src/actions/dependencies_ts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const getLayoutCallbacks = (
182182
- an input is missing
183183
- an input in the initial callback chain depends only on excluded inputs
184184
185-
Further execlusion might happen after callbacks return with:
185+
Further exclusion might happen after callbacks return with:
186186
- PreventUpdate
187187
- no_update
188188
*/

dash-renderer/src/checkPropTypes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import ReactPropTypesSecret from 'prop-types/lib/ReactPropTypesSecret';
1414
* @param {string} location e.g. "prop", "context", "child context"
1515
* @param {string} componentName Name of the component for error messages.
1616
* @param {?Function} getStack Returns the component stack.
17-
* @return {string} Any error messsage resulting from checking the types
17+
* @return {string} Any error message resulting from checking the types
1818
*/
1919
export default function checkPropTypes(
2020
typeSpecs,

dash-renderer/src/observers/requestedCallbacks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const observer: IStoreObserverDefinition<IStoreState> = {
148148
)) as IExecutingCallback[];
149149

150150
/*
151-
3. Modify or remove callbacks that are outputing to non-existing layout `id`.
151+
3. Modify or remove callbacks that are outputting to non-existing layout `id`.
152152
*/
153153

154154
const { added: rAdded, removed: rRemoved } = pruneCallbacks(requested, paths);
@@ -259,7 +259,7 @@ const observer: IStoreObserverDefinition<IStoreState> = {
259259
return false;
260260
}
261261

262-
// Get all intputs for `cb`
262+
// Get all inputs for `cb`
263263
const inputs = map(combineIdAndProp, flatten(cb.getInputs(paths)));
264264

265265
// Get all the potentially updated props for the group so far

dash/_validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def validate_multi_return(outputs_list, output_value, callback_id):
133133
if not isinstance(vi, (list, tuple)):
134134
raise exceptions.InvalidCallbackReturnValue(
135135
"""
136-
The callback {} ouput {} is a wildcard multi-output.
136+
The callback {} output {} is a wildcard multi-output.
137137
Expected the output type to be a list or tuple but got:
138138
{}.
139139
output spec: {}

0 commit comments

Comments
 (0)