Module Name: src
Committed By: martin
Date: Wed Feb 7 09:55:35 UTC 2018
Modified Files:
src/lib/libc/atomic: atomic_ops.3
Log Message:
Fix typo, from Eitan Adler.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libc/atomic/atomic_ops.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/atomic/atomic_ops.3
diff -u src/lib/libc/atomic/atomic_ops.3:1.5 src/lib/libc/atomic/atomic_ops.3:1.6
--- src/lib/libc/atomic/atomic_ops.3:1.5 Wed Apr 14 08:49:49 2010
+++ src/lib/libc/atomic/atomic_ops.3 Wed Feb 7 09:55:35 2018
@@ -1,4 +1,4 @@
-.\" $NetBSD: atomic_ops.3,v 1.5 2010/04/14 08:49:49 jruoho Exp $
+.\" $NetBSD: atomic_ops.3,v 1.6 2018/02/07 09:55:35 martin Exp $
.\"
.\" Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
.\" All rights reserved.
@@ -98,7 +98,7 @@ completes.
If hardware CAS is not available, the store may not reach global visibility
until some time after the atomic operation has completed.
However, in all cases a subsequent atomic operation on the same memory cell
-will be delayed until the result of any preceeding operation has reached
+will be delayed until the result of any preceding operation has reached
global visibility.
.Pp
Atomic operations are strongly ordered with respect to each other.