Skip to content

Commit

Permalink
Reverse polarity of dispatch on languageDisplay boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Jun 7, 2024
1 parent 2ed5748 commit 0abe6fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -536,10 +536,10 @@ public void TestLocaleDisplay() {
break;
case "@languageDisplay":
switch (parts[1]) {
case "standard":
case "dialect":
compound = true;
break;
case "dialect":
case "standard":
compound = false;
break;
}
Expand Down

0 comments on commit 0abe6fd

Please sign in to comment.