Correct "Non-owner accesses results in" to "Non-owner accesses result in".
Signed-off-by: Stephen Hemminger <[email protected]> --- doc/guides/prog_guide/lcore_var.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/prog_guide/lcore_var.rst b/doc/guides/prog_guide/lcore_var.rst index 3d9384bc33..2605dcf0d7 100644 --- a/doc/guides/prog_guide/lcore_var.rst +++ b/doc/guides/prog_guide/lcore_var.rst @@ -75,7 +75,7 @@ but it should only be *frequently* read from or written to by the *owner*. A thread is considered the owner of a particular lcore variable value instance if it has the lcore id associated with that instance. -Non-owner accesses results in *false sharing*. +Non-owner accesses result in *false sharing*. As long as non-owner accesses are rare, they will have only a very slight effect on performance. This property of lcore variables memory organization is intentional. -- 2.51.0

