Browse Source

Fixed line breaks to keep readability on 80 char terminal.

Alois Mahdal 12 years ago
parent
commit
4186bc3e55
1 changed files with 12 additions and 5 deletions
  1. 12
    5
      README.md

+ 12
- 5
README.md View File

@@ -5,7 +5,8 @@ My favorite tiny Perl scripts for development and testing.
5 5
 
6 6
 ##htlog.cgi##
7 7
 
8
-Collects GET requests with parameters *msg*, *tag* and *i* and logs them into single text file.
8
+Collects GET requests with parameters *msg*, *tag* and *i* and logs them into 
9
+single text file.
9 10
 
10 11
 *   *msg* is actual message body. It can be used to contain parseable data 
11 12
     like `name=john;age=32;state=il`
@@ -22,19 +23,25 @@ API to make usage of *htlog.cgi* in Perl scripts even easier
22 23
 
23 24
 ##autotest.pl##
24 25
 
25
-Script to make it easier to start developing your new Perl module under pressure of unit tests written in [Test::More][1] and the likes.
26
+Script to make it easier to start developing your new Perl module under 
27
+pressure of unit tests written in [Test::More][1] and the likes.
26 28
 
27 29
   [1]: (http://perldoc.perl.org/Test/More.html)
28 30
 
29
-Suggested use is to sit on the other monitor, run all *.t* files around and around and be annoying about the fact that they fail.  Then the rule of thumb goes without saying: "no green, no commit".
31
+Suggested use is to sit on the other monitor, run all *.t* files around 
32
+and around and be annoying about the fact that they fail.  Then the rule 
33
+of thumb goes without saying: "no green, no commit".
30 34
 
31 35
 
32 36
 ##timestamp.pl##
33 37
 
34
-Script to measure how long mone second takes.  For those that know how long one second takes, it can serve as a snippet for Perl `&stamp()`.
38
+Script to measure how long mone second takes.  For those that know how long 
39
+one second takes, it can serve as a snippet for Perl `&stamp()`.
35 40
 
36 41
 
37 42
 
38 43
 ##helper.pm##
39 44
 
40
-Container module for some utility methods for Perl.  Probably only `dmup()` is interesting—it bears a nice quick and dirty way for dumping Perl data.
45
+Container module for some utility methods for Perl.  Probably only `dmup()` 
46
+is interesting—it bears a nice quick and dirty way for dumping Perl 
47
+data.