summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2019-08-27 11:42:52 -0700
committergVisor bot <gvisor-bot@google.com>2019-08-27 11:44:06 -0700
commit9679f9891fe524647d5027a3cfb9c892604df064 (patch)
tree35de1143f50f5e4dd80dec9e019dbdb46bae8555 /pkg/sentry
parent8fd89fd7a2b4a69c76b126fa52f47757b6076d36 (diff)
Fix comment typo
PiperOrigin-RevId: 265731735
Diffstat (limited to 'pkg/sentry')
-rw-r--r--pkg/sentry/loader/elf.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/loader/elf.go b/pkg/sentry/loader/elf.go
index bc5b841fb..ba9c9ce12 100644
--- a/pkg/sentry/loader/elf.go
+++ b/pkg/sentry/loader/elf.go
@@ -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
// 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.
//
// Note that the vaddr of the first PT_LOAD segment is ignored when