From 6b6c0a6bf1e90da501e18a9313a1c1c493c0574f Mon Sep 17 00:00:00 2001 From: "James [Undefined]" Date: Sun, 17 Jan 2021 18:24:59 -0600 Subject: [PATCH] Fix small punctuation error Co-authored-by: Alexis Beingessner --- src/arc-clone.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arc-clone.md b/src/arc-clone.md index 1ea5296..ad98800 100644 --- a/src/arc-clone.md +++ b/src/arc-clone.md @@ -22,7 +22,7 @@ while cloning. Thus, we can use a Relaxed ordering here, which implies no happens-before relationship but is atomic. When `Drop`ping the Arc, however, we'll need to atomically synchronize when decrementing the reference count. This is described more in [the section on the `Drop` implementation for -`Arc`](arc-drop.md) For more information on atomic relationships and Relaxed +`Arc`](arc-drop.md). For more information on atomic relationships and Relaxed ordering, see [the section on atomics](atomics.md). Thus, the code becomes this: