Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ben_pollard committed Jan 28, 2024
1 parent 689807a commit 448f1df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docfx/docs/conditional-descriptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ var falseString = "A gleaming sword, without an owner.";
Condition condition = () => player.FindItem("Sword", out _);

// the conditional description itself
var conditionalDescrption = new ConditionalDescription(trueString, falseString, condition);
var conditionalDescription = new ConditionalDescription(trueString, falseString, condition);

// create the item with the conditional description
var sword = new Item(new Identifier("Sword"), conditionalDescrption);
var sword = new Item(new Identifier("Sword"), conditionalDescription);
```

0 comments on commit 448f1df

Please sign in to comment.