Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
doc fixes related to doc rendering on metacpan.org
  • Loading branch information
kmx committed Sep 27, 2015
1 parent 8b06674 commit d900b13
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 25 deletions.
24 changes: 12 additions & 12 deletions Basic/Core/Core.pm
Expand Up @@ -640,7 +640,7 @@ below for usage).
$b = topdl $piddle; # fall through
$a = topdl (1,2,3,4); # Convert 1D array
=head2 PDL::get_datatype
=head2 get_datatype
=for ref
Expand Down Expand Up @@ -837,7 +837,7 @@ sub PDL::howbig {
PDL::howbig_c($t);
}

=head2 PDL::threadids
=head2 threadids
=for ref
Expand Down Expand Up @@ -902,7 +902,7 @@ sub PDL::flows {
return ($this->fflows || $this->bflows);
}

=head2 PDL::new
=head2 new
=for ref
Expand Down Expand Up @@ -1314,7 +1314,7 @@ sub PDL::copy {
return $new;
}

=head2 PDL::hdr_copy
=head2 hdr_copy
=for ref
Expand Down Expand Up @@ -1441,7 +1441,7 @@ sub PDL::_deep_hdr_copy {
}


=head2 PDL::unwind
=head2 unwind
=for ref
Expand All @@ -1452,7 +1452,7 @@ that all threadids have been removed.
$y = $x->unwind;
=head2 PDL::make_physical
=head2 make_physical
=for ref
Expand Down Expand Up @@ -1734,7 +1734,7 @@ sub PDL::thread_define ($$) {
barf "error defining $name: $@\n" if $@;
}

=head2 PDL::thread
=head2 thread
=for ref
Expand Down Expand Up @@ -1798,7 +1798,7 @@ sub PDL::diagonal {
$var->diagonalI(\@_);
}

=head2 PDL::thread1
=head2 thread1
=for ref
Expand All @@ -1822,7 +1822,7 @@ sub PDL::thread1 {
$var->threadI(1,\@_);
}

=head2 PDL::thread2
=head2 thread2
=for ref
Expand All @@ -1846,7 +1846,7 @@ sub PDL::thread2 {
$var->threadI(2,\@_);
}

=head2 PDL::thread3
=head2 thread3
=for ref
Expand Down Expand Up @@ -1992,7 +1992,7 @@ but
[0]
=head2 PDL::info
=head2 info
=for ref
Expand Down Expand Up @@ -2344,7 +2344,7 @@ sub new_or_inplace {
# Allow specifications like zeroes(10,10) or zeroes($x)
# or zeroes(inplace $x) or zeroes(float,4,3)

=head2 PDL::new_from_specification
=head2 new_from_specification
=for ref
Expand Down
20 changes: 10 additions & 10 deletions Lib/Func.pm
Expand Up @@ -174,7 +174,7 @@ BEGIN {

=head1 FUNCTIONS
=head2 PDL::Func::init
=head2 init
=for usage
Expand Down Expand Up @@ -477,7 +477,7 @@ sub _get_value {

####################################################################

=head2 PDL::Func::set
=head2 set
=for usage
Expand Down Expand Up @@ -528,7 +528,7 @@ sub set {

####################################################################

=head2 PDL::Func::get
=head2 get
=for usage
Expand Down Expand Up @@ -567,7 +567,7 @@ sub get {
#
# access to flags - have individual methods for these

=head2 PDL::Func::scheme
=head2 scheme
=for usage
Expand All @@ -583,7 +583,7 @@ Returns either C<Linear> or C<Hermite>.

sub scheme { return $_[0]->{flags}{scheme}; }

=head2 PDL::Func::status
=head2 status
=for usage
Expand All @@ -608,7 +608,7 @@ particular scheme in use.

sub status { return $_[0]->{flags}{status}; }

=head2 PDL::Func::routine
=head2 routine
=for usage
Expand All @@ -625,7 +625,7 @@ C<err> attribute.

sub routine { return $_[0]->{flags}{routine}; }

=head2 PDL::Func::attributes
=head2 attributes
=for usage
Expand Down Expand Up @@ -679,7 +679,7 @@ sub attributes {

####################################################################

=head2 PDL::Func::interpolate
=head2 interpolate
=for usage
Expand Down Expand Up @@ -757,7 +757,7 @@ sub _interp_hermite {
return $yi;
} # sub: _interp_linear()

=head2 PDL::Func::gradient
=head2 gradient
=for usage
Expand Down Expand Up @@ -808,7 +808,7 @@ sub gradient {

} # sub: gradient

=head2 PDL::Func::integrate
=head2 integrate
=for usage
Expand Down
4 changes: 2 additions & 2 deletions Lib/Slatec/slatec.pd
Expand Up @@ -221,7 +221,7 @@ the matrix argument provided is non-invertible. The matrix threads as usual.
This routine was previously known as C<det> which clashes now with
L<det|PDL::MatrixOps/det> which is provided by L<PDL::MatrixOps>.

=head2 PDL::Slatec::fft
=head2 fft

=for ref

Expand All @@ -236,7 +236,7 @@ C<PDL::Slatec::fft> is a convenience wrapper for L<ezfftf|ezfftf>, and
performs a Fast Fourier Transform on an input vector C<$v_in>. The
return values are the same as for L<ezfftf|ezfftf>.

=head2 PDL::Slatec::rfft
=head2 rfft

=for ref

Expand Down
2 changes: 1 addition & 1 deletion Lib/Transform/transform.pd
Expand Up @@ -1252,7 +1252,7 @@ pp_def('map',

Doc=><<'+==EOD_map_doc==',

=head2 PDL::match
=head2 match

=for usage

Expand Down
1 change: 1 addition & 0 deletions Makefile.PL
Expand Up @@ -472,6 +472,7 @@ my %makefile_hash = (
web => 'http://sourceforge.net/p/pdl/code/ci/master/tree/',
},
},
no_index => { file => ['Doc/scantree.pl'] }
},
'MAN1PODS' => { 'Bugs.pod' => '$(INST_MAN1DIR)/PDL::Bugs.$(MAN1EXT)',
'perldl' => '$(INST_MAN1DIR)/perldl.$(MAN1EXT)',
Expand Down

0 comments on commit d900b13

Please sign in to comment.