From 14c1917b70a513ae71191c7fa7f24be62b1789a9 Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Thu, 12 Mar 2020 18:14:31 -0400 Subject: [PATCH] Fix grammar mistake in Performance Guide Fixes #147 --- content/docs/architecture_guide/performance.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/docs/architecture_guide/performance.md b/content/docs/architecture_guide/performance.md index 43ee5ada4..b33b512f0 100644 --- a/content/docs/architecture_guide/performance.md +++ b/content/docs/architecture_guide/performance.md @@ -25,9 +25,9 @@ Second, as gVisor is an independent implementation of the system call surface, many of the subsystems or specific calls are not as optimized as more mature implementations. A good example here is the network stack, which is continuing to evolve but does not support all the advanced recovery mechanisms offered by -other stacks and is less CPU efficient. This an **implementation cost** and is -distinct from **structural costs**. Improvements here are ongoing and driven by -the workloads that matter to gVisor users and contributors. +other stacks and is less CPU efficient. This is an **implementation cost** and +is distinct from **structural costs**. Improvements here are ongoing and driven +by the workloads that matter to gVisor users and contributors. This page provides a guide for understanding baseline performance, and calls out distint **structural costs** and **implementation costs**, highlighting where