From 5dfba99cbb7a8590561490fad5b7a9adf19d1b49 Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Sat, 26 Nov 2016 00:14:35 -0700 Subject: [PATCH] move subs from METHODS to FUNCTIONS in pod --- lib/Linux/Proc/Maps.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Linux/Proc/Maps.pm b/lib/Linux/Proc/Maps.pm index 21a3b12..f71db25 100644 --- a/lib/Linux/Proc/Maps.pm +++ b/lib/Linux/Proc/Maps.pm @@ -30,7 +30,7 @@ our @EXPORT_OK = qw(read_maps write_maps parse_maps_single_line format_maps_sing This module reads and writes F files that contain listed mapped memory regions. -=method read_maps +=func read_maps Read and parse a maps file, returning an arrayref of regions (each represented as a hashref). See L to see the format of the hashrefs. @@ -80,7 +80,7 @@ sub read_maps { return \@regions; } -=method write_maps +=func write_maps Returns a string with the contents of a maps file from the memory regions passed. @@ -118,7 +118,7 @@ sub write_maps { return $out; } -=method parse_maps_single_line +=func parse_maps_single_line Parse and return a single line from a maps file into a region represented as a hashref. @@ -179,7 +179,7 @@ sub parse_maps_single_line { }; } -=method format_maps_single_line +=func format_maps_single_line Return a single line for a maps file from a region represented as a hashref. -- 2.43.0