Index: runtime/vm/exceptions.cc |
diff --git a/runtime/vm/exceptions.cc b/runtime/vm/exceptions.cc |
index 6c9d75c8d67351b28f5ed86207ad8626c304d080..67afc0ca69098fbc5d2414760bee113f3dfde966 100644 |
--- a/runtime/vm/exceptions.cc |
+++ b/runtime/vm/exceptions.cc |
@@ -111,7 +111,7 @@ void PreallocatedStackTraceBuilder::AddFrame(const Code& code, |
// Encode the number of dropped frames into the pc offset. |
frame_offset ^= Smi::New(dropped_frames_); |
stacktrace_.SetPcOffsetAtFrame(null_slot, frame_offset); |
- // Move frames one slot down so that we can accomodate the new frame. |
+ // Move frames one slot down so that we can accommodate the new frame. |
for (intptr_t i = start; i < StackTrace::kPreallocatedStackdepth; i++) { |
intptr_t prev = (i - 1); |
frame_code = stacktrace_.CodeAtFrame(i); |