Fix comment typo

PiperOrigin-RevId: 265731735
This commit is contained in:
Michael Pratt 2019-08-27 11:42:52 -07:00 committed by gVisor bot
parent 8fd89fd7a2
commit 9679f9891f
1 changed files with 1 additions and 1 deletions

View File

@ -464,7 +464,7 @@ func loadParsedELF(ctx context.Context, m *mm.MemoryManager, f *fs.File, info el
// base address big enough to fit all segments, so we first create a // base address big enough to fit all segments, so we first create a
// mapping for the total size just to find a region that is big enough. // mapping for the total size just to find a region that is big enough.
// //
// It is safe to unmap it immediately with racing with another mapping // It is safe to unmap it immediately without racing with another mapping
// because we are the only one in control of the MemoryManager. // because we are the only one in control of the MemoryManager.
// //
// Note that the vaddr of the first PT_LOAD segment is ignored when // Note that the vaddr of the first PT_LOAD segment is ignored when