Skip to content

Commit db7a713

Browse files
committed
Fix the JSDoc for transform
1 parent 055cf10 commit db7a713

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/json-patch-ot/transform.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ import {xforms} from './transforms';
66
* already accepted patches.
77
*
88
* @param accepted Array of already accepted operations.
9-
* @param proposed Array of proposed operations. Proposed operations are mutated inline.
10-
* @param acceptedWins Whether accepted operation should win on when paths match exactly.
9+
* @param proposed Array of proposed operations.
1110
*
12-
* @returns Array of transformed changes
11+
* @returns Array of transformed changes.
1312
*/
1413
export const transform = (accepted: readonly Op[], proposed: readonly Op[]): readonly Op[] => {
1514
const length = accepted.length;

0 commit comments

Comments
 (0)