summaryrefslogtreecommitdiff
path: root/js/v8_source_maps.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/v8_source_maps.ts')
-rw-r--r--js/v8_source_maps.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/v8_source_maps.ts b/js/v8_source_maps.ts
index bb7424f0b..f73cc2d38 100644
--- a/js/v8_source_maps.ts
+++ b/js/v8_source_maps.ts
@@ -149,7 +149,7 @@ function CallSiteToString(frame: CallSite): string {
const isMethodCall = !(frame.isToplevel() || isConstructor);
if (isMethodCall) {
let typeName = frame.getTypeName();
- // Fixes shim to be backward compatable with Node v0 to v4
+ // Fixes shim to be backward compatible with Node v0 to v4
if (typeName === "[object Object]") {
typeName = "null";
}