You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/tutorial-english.html
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -241,19 +241,19 @@ <h4>foreword</h4>
241
241
<aid="thebagoftools"></a>
242
242
<h4>the bag of tools</h4>
243
243
244
-
As for every duty, check your equipment before starting. You probably already have perl, a shell (or something less fortunate if you are on windows, like me ;) and a favourite text editor or IDE.
244
+
As for every job, check your equipment before starting. You probably already have perl, a shell (or something less fortunate if you are on windows, like me ;) and a favourite text editor or IDE.
245
245
246
-
But here in this tutorial we'll use <code>git</code>in the command line and <ahref="https://github.com">github</a> to store our work in a central point (very handy feature). So get a <code>github</code> account and a <code>git</code> client.
246
+
But here in this tutorial we'll use <code>git</code>on the command line and <ahref="https://github.com">github</a> to store our work in a central repository (very handy feature). So get a <code>github</code> account and a <code>git</code> client.
247
247
248
-
This tutorial will focus on the importance (I'd say preminence or even predominance) of testing while developing a perl module. I wrote lonely scripts for years then I realized that even if my script seemed robust, I have no way to test them in a simple and reliable way.
248
+
This tutorial will focus on the importance (I'd say preeminence or even predominance) of testing while developing a perl module. I wrote lonely scripts for years until I realized that even if my script seemed robust, I have no way to test them in a simple and reliable way.
249
249
250
-
So we will use the core module <ahref="http://perldoc.perl.org/Test/More.html">Test::More</a> and the CPAN one <ahref="https://metacpan.org/pod/Test::Exception">Test::Exception</a> in our module so get it installed using your <code>cpan</code> or <code>cpanm</code> client. Take a look to<ahref="http://perldoc.perl.org/Test/Simple.html">Test::Simple</a> if you are not used to test.
250
+
So we will use the core module <ahref="http://perldoc.perl.org/Test/More.html">Test::More</a> and the CPAN <ahref="https://metacpan.org/pod/Test::Exception">Test::Exception</a> in our module so get it installed using your <code>cpan</code> or <code>cpanm</code> client. Take a look at<ahref="http://perldoc.perl.org/Test/Simple.html">Test::Simple</a> if you are not used to testing.
251
251
252
-
We also use the core module <ahref="http://perldoc.perl.org/Carp.html">Carp</a> to report errors from user point of view.
252
+
We also use the core module <ahref="http://perldoc.perl.org/Carp.html">Carp</a> to report errors from the user's point of view.
253
253
254
254
We use <ahref="https://metacpan.org/pod/Module::Starter">Module::Starter</a> to have the skeleton of our module done for us, but, as always there are valid alternatives. Install it.
255
255
256
-
We'll document our module using POD (Plain Old Documentation) see <ahref="https://perldoc.perl.org/perlpod.html">perlpod</a> for reference.
256
+
We'll document our module using POD (Plain Old Documentation) see <ahref="https://perldoc.perl.org/perlpod.html">perlpod</a> for a reference.
0 commit comments