Skip to content

Commit 489cc2d

Browse files
authored
"Fix" display of atomic ops
The POD parser chokes due to ops having `=` in them, which are things to draw the table with. Fixed by wrapping them in C<>, but the parser doesn't parse those in tables :(
1 parent e5cadae commit 489cc2d

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

β€Ždoc/Language/unicode_texas.pod6

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,16 @@ Texas equivalents are subroutines, which are as follows:
118118
119119
=table
120120
Symbol | Texas | Remarks
121-
=======|==================|=========================
122-
βš›= | atomic-assign |
123-
βš› | atomic-fetch | this is the prefix:<βš›> operator
124-
βš›+= | atomic-add-fetch |
125-
βš›-= | atomic-sub-fetch |
126-
++βš› | atomic-inc-fetch |
127-
βš›++ | atomic-fetch-dec |
128-
--βš› | atomic-dec-fetch |
129-
βš›-- | atomic-fetch-dec |
121+
===============================================================
122+
C<βš›=> | atomic-assign |
123+
C<βš›> | atomic-fetch | this is the prefix:<βš›> operator
124+
C<βš›+=> | atomic-add-fetch |
125+
C<βš›-=> | atomic-sub-fetch |
126+
C<βš›βˆ’=> | atomic-sub-fetch | this operator uses U+2212 minus sign
127+
C<++βš›> | atomic-inc-fetch |
128+
C<βš›++> | atomic-fetch-dec |
129+
C<--βš›> | atomic-dec-fetch |
130+
C<βš›--> | atomic-fetch-dec |
130131
131132
=head1 Multiple codepoints
132133

0 commit comments

Comments
Β (0)