diff --git a/docs/faq/index.html b/docs/faq/index.html index 512c1911..add48a04 100644 --- a/docs/faq/index.html +++ b/docs/faq/index.html @@ -144,7 +144,7 @@

Why does the run command not for

If you want to print the output to your terminal you have to call it in a scalar context.

-
my $output = run "df -h";
+
my $output = run "df -h";
 say $output;

How can I get the current server from within a task?

diff --git a/docs/release_notes/0.42.html b/docs/release_notes/0.42.html index f59d6f9b..c1a02b1f 100644 --- a/docs/release_notes/0.42.html +++ b/docs/release_notes/0.42.html @@ -128,7 +128,7 @@

Net::OpenSSH connection mode - chenr

This fixes long standing pull request #70.

-
use Rex -feature => '0.42';
+
use Rex -feature => '0.42';
 
 set connection => 'OpenSSH';
 
diff --git a/docs/release_notes/1.9.0.html b/docs/release_notes/1.9.0.html
index f75cf0ba..2585c90c 100644
--- a/docs/release_notes/1.9.0.html
+++ b/docs/release_notes/1.9.0.html
@@ -134,7 +134,7 @@ 

New features

It is intended to complement the utf8 pragma in Rexfiles and modules:

-
use utf8;
+
use utf8;
 use Rex -feature => ['write_utf8_files'];    
diff --git a/docs/rex_book/writing_modules/getting_information_of_the_environment.html b/docs/rex_book/writing_modules/getting_information_of_the_environment.html index fb98c2bd..9293dbc4 100644 --- a/docs/rex_book/writing_modules/getting_information_of_the_environment.html +++ b/docs/rex_book/writing_modules/getting_information_of_the_environment.html @@ -123,7 +123,7 @@

Getting information of the environment

Rex comes with a hardware gathering module. To display all the things Rex knows about the environment your can create a test task that just dumps all the information.

-
use Rex -feature => ['1.0'];
+
use Rex -feature => ['1.0'];
 
 task "dump-info", sub {
     dump_system_information;