From 0b46a7c5b9dfac00bb15e534e19a75ff84b7e219 Mon Sep 17 00:00:00 2001 From: Sami Vaarala Date: Thu, 26 Nov 2015 16:37:20 +0200 Subject: [PATCH] Trivial typofix in comment --- src/duk_error_augment.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/duk_error_augment.c b/src/duk_error_augment.c index 7d02f655..f0af5d5e 100644 --- a/src/duk_error_augment.c +++ b/src/duk_error_augment.c @@ -420,14 +420,13 @@ DUK_LOCAL void duk__err_augment_builtin_create(duk_hthread *thr, duk_hthread *th DUK_ASSERT(obj != NULL); DUK_UNREF(obj); /* unreferenced w/o tracebacks */ - DUK_UNREF(ctx); /* unreferenced w/ asserts */ + DUK_UNREF(ctx); /* unreferenced w/o asserts */ #if defined(DUK_USE_TRACEBACKS) /* If tracebacks are enabled, the '_Tracedata' property is the only * thing we need: 'fileName' and 'lineNumber' are virtual properties * which use '_Tracedata'. */ - if (duk_hobject_hasprop_raw(thr, obj, DUK_HTHREAD_STRING_INT_TRACEDATA(thr))) { DUK_DDD(DUK_DDDPRINT("error value already has a '_Tracedata' property, not modifying it")); } else {