Skip to content

Commit 6b6c0a6

Browse files
Fix small punctuation error
Co-authored-by: Alexis Beingessner <[email protected]>
1 parent c2919c6 commit 6b6c0a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arc-clone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ while cloning. Thus, we can use a Relaxed ordering here, which implies no
2222
happens-before relationship but is atomic. When `Drop`ping the Arc, however,
2323
we'll need to atomically synchronize when decrementing the reference count. This
2424
is described more in [the section on the `Drop` implementation for
25-
`Arc`](arc-drop.md) For more information on atomic relationships and Relaxed
25+
`Arc`](arc-drop.md). For more information on atomic relationships and Relaxed
2626
ordering, see [the section on atomics](atomics.md).
2727

2828
Thus, the code becomes this:

0 commit comments

Comments
 (0)