# New Ticket Created by  Brad Bowman 
# Please include the string:  [perl #60450]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60450 >



A few things that rendered strangely on the web in
docs/memory_internals.pod and src/ops/core.ops

 docs/memory_internals.pod |    4 ++--
 src/ops/core.ops          |    3 ++-
 2 files changed, 4 insertions(+), 3 deletions(-)

Brad
diff --git a/docs/memory_internals.pod b/docs/memory_internals.pod
index e70dd26..221a95e 100644
--- a/docs/memory_internals.pod
+++ b/docs/memory_internals.pod
@@ -24,14 +24,14 @@ Arena holds and manages a set number of items of a single size and shape.
 
 =over 4
 
-=item* GC
+=item * GC
 
 Garbage collector. A garbage collector is a system that finds memory objects
 that are not being used by the system, and frees them automatically. Garbage
 collection is broken into two distinct phases: the I<mark phase> that searches
 for unreferenced objects, and the I<sweep phase> that frees all dead objects.
 
-=item* DOD
+=item * DOD
 
 Dead object detection, a deprecated term that refers to the I<mark phase>
 of the garbage collector.
diff --git a/src/ops/core.ops b/src/ops/core.ops
index 59e4130..4df1b4f 100644
--- a/src/ops/core.ops
+++ b/src/ops/core.ops
@@ -541,7 +541,7 @@ Define return results for the subroutine return statement.
 
 For all of these opcodes the passed invar PMC constant is the string
 representation of a FixedIntegerArray with one flag word per argument.
-The flags are documented currently in F<include/parrot/enum.h> only.
+The flags are documented currently in F<include/parrot/enums.h> only.
 
 After this argument a variable amount of arguments must follow according
 to the elements of the signature array.
@@ -784,6 +784,7 @@ Only valid inside an exception handler. Rethrow the exception $1.
 Get a count of currently active exception handlers on the stack.
 
 =item B<die>(in STR)
+
 =item B<die>(in PMC)
 
 Die with message $1

Reply via email to