about summary refs log tree commit diff
path: root/manual/threads.texi
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2020-10-05 17:29:38 +0100
committerJonathan Wakely <jwakely@redhat.com>2020-10-05 17:29:46 +0100
commit5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d (patch)
tree159400570cd676c3acbdb8d427887abcfdb8beaf /manual/threads.texi
parent3102e28bd11ed1083d3defdfd75e6d1273ab45f9 (diff)
downloadglibc-5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d.tar.gz
glibc-5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d.tar.xz
glibc-5bb2e5300b9b7cf1b8b7f2cbcbfca4d4a529082d.zip
manual: Fix typo
Diffstat (limited to 'manual/threads.texi')
-rw-r--r--manual/threads.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/threads.texi b/manual/threads.texi
index 4ab0622443..5bcfe32d6a 100644
--- a/manual/threads.texi
+++ b/manual/threads.texi
@@ -896,7 +896,7 @@ Model Aware Atomic Operations, gcc, Using the GNU Compiler Collection
 
 @smallexample
 if (__libc_single_threaded)
-  ++refeference_count;
+  ++reference_count;
 else
   __atomic_fetch_add (&reference_count, 1, __ATOMIC_ACQ_REL);
 @end smallexample