Skip to content

Commit f15ec8e

Browse files
author
Nathan Gobinet
committed
Fix semi
1 parent 086c36b commit f15ec8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/jsondiffpatch/src/formatters/jsonpatch.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class JSONFormatter extends BaseFormatter<JSONFormatterContext, Op[]> {
101101
};
102102

103103
context.buildPath = function (path: (string | number)[]) {
104-
return path.map((path) => this.escapePath!(path)).join('/')
104+
return path.map((path) => this.escapePath!(path)).join('/');
105105
}
106106

107107
context.escapePath = function (path: string | number) {

0 commit comments

Comments
 (0)