Skip to content

Commit ef65ad2

Browse files
committed
misspelling of Ukrainian (exercism#360)
[no important files changed]
1 parent 681d295 commit ef65ad2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/practice/zebra-puzzle/.meta/example.tcl

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ oo::class create ZebraPuzzle {
4141

4242
variable one two three four five
4343
variable red green ivory yellow blue
44-
variable english spanish ukranian norwegian japanese
44+
variable english spanish ukrainian norwegian japanese
4545
variable dog snails fox horse zebra
4646
variable dancing painting reading football chess
4747
variable coffee tea milk orangeJuice water
@@ -82,7 +82,7 @@ oo::class create ZebraPuzzle {
8282
}
8383

8484
method SolveForNationality {permutation} {
85-
lassign $permutation english spanish ukranian norwegian japanese
85+
lassign $permutation english spanish ukrainian norwegian japanese
8686
# clues 2, 10, 15
8787
if {
8888
$english == $red
@@ -93,7 +93,7 @@ oo::class create ZebraPuzzle {
9393
set nationality [dict create]
9494
dict set nationalities $english EnglishMan
9595
dict set nationalities $spanish Spaniard
96-
dict set nationalities $ukranian Ukranian
96+
dict set nationalities $ukrainian Ukrainian
9797
dict set nationalities $norwegian Norwegian
9898
dict set nationalities $japanese Japanese
9999

@@ -108,7 +108,7 @@ oo::class create ZebraPuzzle {
108108
# clues 4, 5, 9
109109
if {
110110
$coffee == $green
111-
&& $ukranian == $tea
111+
&& $ukrainian == $tea
112112
&& $milk == $MIDDLE
113113
} {
114114
foreach p [permutations] {

0 commit comments

Comments
 (0)