Skip to content

Commit 83d31cb

Browse files
committed
Follow spelling change to atomic prefix ops.
1 parent c92f2f1 commit 83d31cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

β€Ždoc/Type/atomicint.pod6β€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ It would be legal for a compiler to observe that C<$i> is not updated in the
210210
loop, and so lift the read out of the loop, thus causing the program to never
211211
terminate.
212212
213-
=head2 prefix βš›++
213+
=head2 prefix ++βš›
214214
215-
multi sub prefix:<βš›++>(atomcint $ is rw)
215+
multi sub prefix:<++βš›>(atomcint $ is rw)
216216
217217
Performs an atomic increment on a native integer. This will be performed using
218218
hardware-provided atomic operations. Since the operation is atomic, it is safe
@@ -228,9 +228,9 @@ hardware-provided atomic operations. Since the operation is atomic, it is safe
228228
to use without acquiring a lock. Returns the value as seen before incrementing
229229
it. Overflow will wrap around silently.
230230
231-
=head2 prefix βš›--
231+
=head2 prefix --βš›
232232
233-
multi sub prefix:<βš›-->(atomcint $ is rw)
233+
multi sub prefix:<--βš›>(atomcint $ is rw)
234234
235235
Performs an atomic decrement on a native integer. This will be performed using
236236
hardware-provided atomic operations. Since the operation is atomic, it is safe

0 commit comments

Comments
Β (0)