Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add ws between hash mark and text
  • Loading branch information
tbrowder committed Sep 9, 2016
1 parent d3afef5 commit dfc44f2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/Language/modules.pod6
Expand Up @@ -152,11 +152,11 @@ tags: C<ALL>, C<DEFAULT> and C<MANDATORY>.
=begin code
# main.pl
use lib 'lib';
use MyModule; #bag, pants
use MyModule :DEFAULT; #the same
use MyModule :day; #pants, sunglasses
use MyModule :night; #pants, torch
use MyModule :ALL; #bag, pants, sunglasses, torch, underpants
use MyModule; # bag, pants
use MyModule :DEFAULT; # the same
use MyModule :day; # pants, sunglasses
use MyModule :night; # pants, torch
use MyModule :ALL; # bag, pants, sunglasses, torch, underpants
=end code
Notes:
Expand All @@ -173,7 +173,7 @@ no matter whether the using program adds any tag or not.
=begin code
# main.pl
use lib 'lib';
use MyModule :day, :night; #pants, sunglasses, torch
use MyModule :day, :night; # pants, sunglasses, torch
=end code
=head3 UNIT::EXPORT::*
Expand Down

0 comments on commit dfc44f2

Please sign in to comment.