Skip to content

Commit

Permalink
Clarify example a bit, Coke++
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jan 17, 2024
1 parent 0a7cc96 commit ac9aff7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions localizations/EN/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ SYNOPSIS
========

```raku
use L10N::NL;
use L10N::NL; # or any other non-English localization
zeg "Hallo wereld";
{
gebruik L10N::EN; # Note: -use- needs to be in outer localization
say "Hello World";
gebruik L10N::EN; # Note: -use- is -gebruik- in L10N::NL
say "Hello World"; # now back to "normal" english syntax
}
```

Expand All @@ -33,4 +33,3 @@ COPYRIGHT AND LICENSE
Copyright 2023 Raku Localization Team

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.

6 changes: 3 additions & 3 deletions localizations/EN/lib/L10N/EN.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ L10N::EN - English localization of Raku
=begin code :lang<raku>
use L10N::NL;
use L10N::NL; # or any other non-English localization
zeg "Hallo wereld";
{
gebruik L10N::EN; # Note: -use- needs to be in outer localization
say "Hello World";
gebruik L10N::EN; # Note: -use- is -gebruik- in L10N::NL
say "Hello World"; # now back to "normal" english syntax
}
=end code
Expand Down

0 comments on commit ac9aff7

Please sign in to comment.