summaryrefslogtreecommitdiff
path: root/fxjs/js_define.h
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-07-11 13:02:54 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-07-11 13:02:54 +0000
commitb1a4db5551ca7c211c8acbec2b657d25fa7d7f1d (patch)
tree9759d4a4402201ea73df1fee5cfd495b7f103352 /fxjs/js_define.h
parentcbed949bee845d6ab3e38b3d9b7e832620b64b51 (diff)
downloadpdfium-b1a4db5551ca7c211c8acbec2b657d25fa7d7f1d.tar.xz
Fix some nits in fxjs code.
Change-Id: I533a702947ba371cbc7971d88a3b7dabbc81a298 Reviewed-on: https://pdfium-review.googlesource.com/37511 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/js_define.h')
-rw-r--r--fxjs/js_define.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/js_define.h b/fxjs/js_define.h
index 0f16749779..01dfb15e2d 100644
--- a/fxjs/js_define.h
+++ b/fxjs/js_define.h
@@ -54,7 +54,7 @@ static void JSConstructor(CFXJS_Engine* pEngine, v8::Local<v8::Object> obj) {
obj, pdfium::MakeUnique<T>(obj, static_cast<CJS_Runtime*>(pEngine)));
}
-// CJS_Object has vitual dtor, template not required.
+// CJS_Object has virtual dtor, template not required.
void JSDestructor(v8::Local<v8::Object> obj);
template <class C, CJS_Return (C::*M)(CJS_Runtime*)>