Skip to content

Commit 12282b6

Browse files
Fix typos found by codespell
1 parent fc99730 commit 12282b6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

callGraph

+1-1
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ if ( $opt{obfuscate} ) {
894894
SCRABBLE:
895895
my @letters = split //, 'aaaaaaaaabbccddddeeeeeeeeeeeeffgggghhiiiiiiiiijkllllmmnnnnnnooooooooppqrrrrrrssssttttttuuuuvvwwxyyz';
896896
my $name = join '', @letters[ map rand @letters, 1 .. 9 ];
897-
goto SCRABBLE if defined $cache->{$name}; # Don't re-use any random words
897+
goto SCRABBLE if defined $cache->{$name}; # Don't reuse any random words
898898
$new = $name;
899899
$cache->{$name} = $new;
900900
} else {

callGraph.orig

+1-1
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ if ( $opt{obfuscate} ) {
817817
SCRABBLE:
818818
my @letters = split //, 'aaaaaaaaabbccddddeeeeeeeeeeeeffgggghhiiiiiiiiijkllllmmnnnnnnooooooooppqrrrrrrssssttttttuuuuvvwwxyyz';
819819
my $name = join '', @letters[map rand @letters, 1 .. 9];
820-
goto SCRABBLE if defined $cache->{$name}; # Don't re-use any random words
820+
goto SCRABBLE if defined $cache->{$name}; # Don't reuse any random words
821821
$new = $name;
822822
$cache->{$name} = $new;
823823
} else {

test/example.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-- https://rosettacode.org/wiki/Card_shuffles#Lua
22

3-
-- Return a table respresenting a standard deck of cards in order
3+
-- Return a table representing a standard deck of cards in order
44
function newDeck ()
55
local cards, suits = {}, {"C", "D", "H", "S"}
66
for _, suit in pairs(suits) do

0 commit comments

Comments
 (0)