[svn:parrot] r48399 - in trunk: src/dynpmc t/codingstd
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Wed Aug 11 02:21:01 UTC 2010
Author: jkeenan
Date: Wed Aug 11 02:21:01 2010
New Revision: 48399
URL: https://trac.parrot.org/parrot/changeset/48399
Log:
[codingstd] Reformat POD so that file passes pmc_docs.t.
Modified:
trunk/src/dynpmc/rational.pmc
trunk/t/codingstd/pmc_docs.t
Modified: trunk/src/dynpmc/rational.pmc
==============================================================================
--- trunk/src/dynpmc/rational.pmc Wed Aug 11 02:19:54 2010 (r48398)
+++ trunk/src/dynpmc/rational.pmc Wed Aug 11 02:21:01 2010 (r48399)
@@ -46,7 +46,7 @@
/*
-=item * static STRING *rat_get_string_to_base(PARROT_INTERP, PMC *self, int base)
+=item C<static STRING *rat_get_string_to_base(PARROT_INTERP, PMC *self, int base)>
Returns a string representation of a Rational-PMC to a certain base.
@@ -66,7 +66,7 @@
/*
-=item * static void rat_add_integer(PARROT_INTERP, PMC *self, int value)
+=item C<static void rat_add_integer(PARROT_INTERP, PMC *self, int value)>
Adds an integer "value" to a Rational-PMC inplace.
@@ -87,7 +87,7 @@
/*
-=item * static void rat_add_float(PARROT_INTERP, PMC *self, double value)
+=item C<static void rat_add_float(PARROT_INTERP, PMC *self, double value)>
Adds a float "value" to a Rational-PMC in-place. "value" is first conveted to a
rational using GMPs mpq_set_d-function. This is meant to be exact.
@@ -110,7 +110,7 @@
/*
-=item * static void rat_multiply_integer(PARROT_INTERP, PMC *self, int value)
+=item C<static void rat_multiply_integer(PARROT_INTERP, PMC *self, int value)>
Multiplys a Rational-PMC with an integer "value" in-place.
@@ -127,7 +127,7 @@
/*
-=item * static void rat_multiply_float(PARROT_INTERP, PMC *self, double value)
+=item C<static void rat_multiply_float(PARROT_INTERP, PMC *self, double value)>
Multiplies a Rational-PMC with a float "value" in-place.
@@ -149,7 +149,7 @@
/*
-=item * static void rat_divide_integer(PARROT_INTERP, PMC *self, int value)
+=item C<static void rat_divide_integer(PARROT_INTERP, PMC *self, int value)>
Divides a Rational-PMC through an integer "value" in-place.
@@ -171,7 +171,7 @@
/*
-=item * static void rat_divide_float(PARROT_INTERP, PMC *self, double value)
+=item C<static void rat_divide_float(PARROT_INTERP, PMC *self, double value)>
Divides a Rational-PMC through a float "value" in-place.
Modified: trunk/t/codingstd/pmc_docs.t
==============================================================================
--- trunk/t/codingstd/pmc_docs.t Wed Aug 11 02:19:54 2010 (r48398)
+++ trunk/t/codingstd/pmc_docs.t Wed Aug 11 02:21:01 2010 (r48399)
@@ -121,7 +121,6 @@
}
__DATA__
-src/dynpmc/rational.pmc
src/pmc/bigint.pmc
src/pmc/bignum.pmc
src/pmc/callcontext.pmc
More information about the parrot-commits
mailing list