Skip to content

Commit 84bf1f5

Browse files
committed
Merge remote-tracking branch 'origin/forman-25-property_path' into forman-25-property_path
2 parents 623b531 + 666b5e3 commit 84bf1f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dashi/src/lib/types/model/callback.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export interface CallbackRef {
6262
export interface InputRef {
6363
/**
6464
* The index of the input of a callback.
65-
* Records the input that triggered the callback.
65+
* Records the index of the input that triggered the callback.
6666
*/
6767
inputIndex: number;
6868
}

dashi/src/lib/utils/objPath.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export function setValue<S extends object | undefined>(
2626
return _setValue(obj, toObjPath(path), value);
2727
}
2828

29-
export function _setValue<S extends object | undefined>(
29+
function _setValue<S extends object | undefined>(
3030
obj: S,
3131
path: ObjPath,
3232
value: unknown,

0 commit comments

Comments
 (0)