@@ -149,11 +149,6 @@ X<C<//>; infix operator>
149149X<C<|=>; infix operator>
150150X<C<||=>; infix operator>
151151X<C<//=>; infix operator>
152-
153- I<Infix> operators appear between their operands. Most mathematical operators
154- are infix operators, such as the multiplication operator in C<$length
155- * $width>.
156-
157152X<C<\>; prefix operator>
158153X<C<~>; prefix operator>
159154X<C<++>; prefix operator>
@@ -162,25 +157,31 @@ X<C<+>; prefix operator>
162157X<C<->; prefix operator>
163158X<C<!>; prefix operator>
164159X<C<!!>; prefix operator>
165-
166- I<Prefix> operators precede their operands. I<Postfix> operators follow their
167- operands. These operators tend to be unary, such as mathematic negation
168- (C<-$x>), boolean negation (C<!$y>), and postfix increment (C<$z++>).
169-
170160X<C<()>; circumfix operator>
171161X<C<{}>; circumfix operator>
172162X<C<[]>; circumfix operator>
173163X<C<//>; circumfix operator>
174164X<C<``>; circumfix operator>
175165X<C<''>; circumfix operator>
176166X<C<"">; circumfix operator>
177-
178- I<Circumfix> operators surround their operands, as with the anonymous hash
179- constructor (C<{ ... }>) and quoting operators (C<qq[ ... ]>).
180-
181167X<C<()>; postcircumfix operator>
182168X<C<{}>; postcircumfix operator>
183169X<C<[]>; postcircumfix operator>
184170
185- I<Postcircumfix> operators follow certain operands and surround others, as seen
171+ =over 4
172+
173+ =item * I<Infix> operators appear between their operands. Most mathematical operators
174+ are infix operators, such as the multiplication operator in C<$length
175+ * $width>.
176+
177+ =item * I<Prefix> operators precede their operands. I<Postfix> operators follow their
178+ operands. These operators tend to be unary, such as mathematic negation
179+ (C<-$x>), boolean negation (C<!$y>), and postfix increment (C<$z++>).
180+
181+ =item * I<Circumfix> operators surround their operands, as with the anonymous hash
182+ constructor (C<{ ... }>) and quoting operators (C<qq[ ... ]>).
183+
184+ =item * I<Postcircumfix> operators follow certain operands and surround others, as seen
186185in hash and array element access (C<$hash{$x}> and C<$array[$y]>).
186+
187+ =back
0 commit comments