Skip to content

Commit

Permalink
remove unnecessary escape character
Browse files Browse the repository at this point in the history
Signed-off-by: Seyed Mohammad Mahdi Hatami <[email protected]>
  • Loading branch information
smmhatami committed Jun 29, 2023
1 parent 9850973 commit 2a08f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlebars/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ export function invokePartial(partial, context, options) {
}

if (partial === undefined) {
throw new Exception('The partial \"' + options.name + '\" could not be found');
throw new Exception('The partial "' + options.name + '" could not be found');
} else if (partial instanceof Function) {
return partial(context, options);
}
Expand Down

0 comments on commit 2a08f29

Please sign in to comment.