Skip to content

Commit 82e516d

Browse files
committed
Fix vjp docstring
1 parent 8073edf commit 82e516d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/impl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ export const jvp = <const A extends readonly any[], const R>(
875875
return makeFn(g) as any;
876876
};
877877

878-
/** Construct a closure that computes the Jacobian-vector product of `f`. */
878+
/** Construct a closure that computes the vector-Jacobian product of `f`. */
879879
export const vjp = <const A, const R>(
880880
f: Fn & ((arg: A) => R),
881881
): ((arg: A) => { ret: R; grad: (cot: R) => A }) => {

0 commit comments

Comments
 (0)