Skip to content

Commit d1e0c45

Browse files
committed
Just reflow, re-check #2695
1 parent ad04930 commit d1e0c45

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

doc/Language/nativetypes.pod6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ say @letter-pairs.perl;
8989
# OUTPUT: «array[str].new(:shape(10,), ["aA", "bB", "cC", "dD", "eE", "fF", "gG", "hH", "iI", "jJ"])␤»
9090
=end code
9191
92-
X<|int8>X<|int16>X<|int32>X<|int64>X<|uint8>X<|uint16>X<|uint32>X<|uint64>X<|num32>X<|num64>X<|byte>
92+
X<|int8>X<|int16>X<|int32>X<|int64>X<|uint8>X<|uint16>X<|uint32>X<|uint64>
93+
X<|num32>X<|num64>X<|byte>
9394
=head1 Types with native representation and size
9495
9596
What has been mentioned about types with native representation also applies

doc/Language/performance.pod6

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ profiled in the "Name" search box.
5858
The "Call Graph" section gives a flame graph representation of much of the same
5959
information as the "Routines" section.
6060
61-
The "Allocations" section gives you information about the amount of different types
62-
that were allocated, as well as which routines did the allocating.
61+
The "Allocations" section gives you information about the amount of different
62+
types that were allocated, as well as which routines did the allocating.
6363
6464
The "GC" section gives you detailed information about all the garbage
6565
collections that occurred.
6666
67-
The "OSR / Deopt" section gives you information about On Stack Replacements (OSRs),
68-
which is when routines are "upgraded" from interpreted to speshed or jitted. Deopts
69-
are the opposite, when speshed or jitted code has to be "downgraded" to being
70-
interpreted.
67+
The "OSR / Deopt" section gives you information about On Stack Replacements
68+
(OSRs), which is when routines are "upgraded" from interpreted to speshed or
69+
jitted. Deopts are the opposite, when speshed or jitted code has to be
70+
"downgraded" to being interpreted.
7171
7272
If the profile data is too big, it could take a long time for a browser to open
7373
the file. In that case, output to a file with a C<.json> extension using the
@@ -153,8 +153,8 @@ L<camelia|/language/glossary#camelia>.
153153
154154
=head2 Routine by routine
155155
156-
With multidispatch, you can drop in new variants of routines "alongside" existing
157-
ones:
156+
With multidispatch, you can drop in new variants of routines "alongside"
157+
existing ones:
158158
159159
# existing code generically matches a two arg foo call:
160160
multi sub foo(Any $a, Any $b) { ... }

doc/Language/traits.pod6

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ cannot create an instance of this type (don't-instantiate)>.
6363
6464
Since the C<is> trait refers, in general, to the nature of the class or object
6565
they are applied to, they are used extensively in
66-
L<native calls|/language/nativecall> to L<specify the representation|/language/nativecall#Specifying_the_native_representation>
66+
L<native calls|/language/nativecall> to
67+
L<specify the representation|/language/nativecall#Specifying_the_native_representation>
6768
of the data structures that are going to be handled by the native functions via
6869
the C<is repr> suffix; at the same time, C<is native> is used for the routines
6970
that are actually implemented via native functions. These are the

0 commit comments

Comments
 (0)