From 91d65e024846717fce3572106cffe9b957b8902c Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Tue, 19 Jan 2016 15:59:16 +0000 Subject: Fix various typos in ART's comments and string literals. Change-Id: I85d628055b1a61647a77fef730c9631c234e22a2 --- runtime/entrypoints/entrypoint_utils-inl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/entrypoints/entrypoint_utils-inl.h') diff --git a/runtime/entrypoints/entrypoint_utils-inl.h b/runtime/entrypoints/entrypoint_utils-inl.h index 68f2dcbf31..0663b7ef78 100644 --- a/runtime/entrypoints/entrypoint_utils-inl.h +++ b/runtime/entrypoints/entrypoint_utils-inl.h @@ -193,10 +193,10 @@ inline mirror::Object* AllocObjectFromCodeResolved(mirror::Class* klass, return nullptr; } gc::Heap* heap = Runtime::Current()->GetHeap(); - // Pass in false since the object can not be finalizable. + // Pass in false since the object cannot be finalizable. return klass->Alloc(self, heap->GetCurrentAllocator()); } - // Pass in false since the object can not be finalizable. + // Pass in false since the object cannot be finalizable. return klass->Alloc(self, allocator_type); } @@ -207,7 +207,7 @@ inline mirror::Object* AllocObjectFromCodeInitialized(mirror::Class* klass, Thread* self, gc::AllocatorType allocator_type) { DCHECK(klass != nullptr); - // Pass in false since the object can not be finalizable. + // Pass in false since the object cannot be finalizable. return klass->Alloc(self, allocator_type); } -- cgit v1.2.3-59-g8ed1b