Skip to content

Commit

Permalink
use POD instead of POD6 in env var names
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrowder committed Dec 24, 2017
1 parent ca157d9 commit 495fe6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Pod.nqp
Expand Up @@ -24,7 +24,7 @@ class Perl6::Pod {

# enable use of env vars for debug selections
# for users
my $udebug := nqp::ifnull( nqp::atkey( nqp::getenvhash(), 'RAKUDO_POD6_TABLE_DEBUG' ), 0 );
my $udebug := nqp::ifnull( nqp::atkey( nqp::getenvhash(), 'RAKUDO_POD_TABLE_DEBUG' ), 0 );
# for developers
my $debug := nqp::ifnull( nqp::atkey( nqp::getenvhash(), 'RAKUDO_POD_TABLE_DEBUG_DEV' ), 0 );
my $debugp := nqp::ifnull( nqp::atkey( nqp::getenvhash(), 'RAKUDO_POD_DEBUG_DEV' ), 0 );
Expand Down

0 comments on commit 495fe6e

Please sign in to comment.