[svn:parrot] r37009 - in trunk: docs include/parrot

jkeenan at svn.parrot.org jkeenan at svn.parrot.org
Wed Feb 25 23:59:22 UTC 2009


Author: jkeenan
Date: Wed Feb 25 23:59:21 2009
New Revision: 37009
URL: https://trac.parrot.org/parrot/changeset/37009

Log:
Applying documentation fixes found in patch submitted by ronaldws in https://trac.parrot.org/parrot/ticket/377.

Modified:
   trunk/docs/debug.pod
   trunk/docs/multidispatch.pod
   trunk/docs/vtables.pod
   trunk/include/parrot/settings.h

Modified: trunk/docs/debug.pod
==============================================================================
--- trunk/docs/debug.pod	Wed Feb 25 23:21:33 2009	(r37008)
+++ trunk/docs/debug.pod	Wed Feb 25 23:59:21 2009	(r37009)
@@ -58,7 +58,7 @@
 garbage collector.
 
 Within the C<--gc-debug> mode, there is another tool to help narrow down the
-problem. You can edit F<src/gc/api.c> and C<#define> the C<GC_VERBOSE> flag to
+problem. You can edit F<include/parrot/gc_api.h> and C<#define> the C<GC_VERBOSE> flag to
 1.  After recompiling C<parrot>, the garbage collector will perform additional
 checks. After the garbage collector has traced all objects to find which ones
 are still alive, it will scan through all of the dead objects to see if any of

Modified: trunk/docs/multidispatch.pod
==============================================================================
--- trunk/docs/multidispatch.pod	Wed Feb 25 23:21:33 2009	(r37008)
+++ trunk/docs/multidispatch.pod	Wed Feb 25 23:59:21 2009	(r37009)
@@ -8,7 +8,7 @@
 =head1 CAVEATS
 
 XXX - Part or all of this document is outdated.  Especially the "the MMD system
-doesn't handle inheritance" bit.  Please refer to PDD03 at this moment while we
+doesn't handle inheritance" bit.  Please refer to PDD27 at this moment while we
 rewrite or merge this document.  We apologize for the inconvenience.
 
 =head1 SYNOPSIS

Modified: trunk/docs/vtables.pod
==============================================================================
--- trunk/docs/vtables.pod	Wed Feb 25 23:21:33 2009	(r37008)
+++ trunk/docs/vtables.pod	Wed Feb 25 23:59:21 2009	(r37009)
@@ -161,7 +161,7 @@
 
 The master list of VTABLE interfaces can be found in F<src/vtable.tbl> in
 the root directory of the Parrot source, with documentation in
-F<docs/pdds/pdd02_vtables.pod>. A few of these are very important, for
+F<docs/pdds/pdd17_pmc.pod>. A few of these are very important, for
 instance:
 
 =over 3

Modified: trunk/include/parrot/settings.h
==============================================================================
--- trunk/include/parrot/settings.h	Wed Feb 25 23:21:33 2009	(r37008)
+++ trunk/include/parrot/settings.h	Wed Feb 25 23:59:21 2009	(r37009)
@@ -27,7 +27,7 @@
 
 /* Helpful internal macro for testing whether we are currently
  * debugging garbage collection and memory management. See also the
- * definition of GC_VERBOSE in src/gc/api.c. */
+ * definition of GC_VERBOSE in include/parrot/gc_api.h. */
 #if DISABLE_GC_DEBUG
 #  define GC_DEBUG(interp) 0
 #else


More information about the parrot-commits mailing list