Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pod/perlrun.pod
Original file line number Diff line number Diff line change
Expand Up @@ -694,11 +694,11 @@ X<-m> X<-M>

=item B<-[mM]>[B<->]I<module=arg[,arg]...>

B<-m>I<module> executes C<use> I<module> C<();> before executing your
B<-m>I<module> executes S<C<use I<module> ();>> before executing your
program. This loads the module, but does not call its C<import> method,
so does not import subroutines and does not give effect to a pragma.

B<-M>I<module> executes C<use> I<module> C<;> before executing your
B<-M>I<module> executes S<C<use I<module>;>> before executing your
program. This loads the module and calls its C<import> method, causing
the module to have its default effect, typically importing subroutines
or giving effect to a pragma.
Expand Down
Loading