Skip to content

Commit

Permalink
fixed a typo in dialogue docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
McJones committed Sep 28, 2023
1 parent 04773e2 commit 1fae2a5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- The `Utility.TagLines` method to eventually replace the now deprecated `AddTagsToLines` method.
- The `LineIDsForNode` method on `Program` allowing you to get all line IDs in advance of needing them.
- The `format_invariant` function, allowing for numbers to be injected into commands without respecting culture.

### Changed

Expand Down
1 change: 0 additions & 1 deletion YarnSpinner.Tests/LanguageTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public LanguageTests() : base() {
[Fact]
public void TestExampleScript()
{

runtimeErrorsCauseFailures = false;
var path = Path.Combine(TestDataPath, "Example.yarn");
var testPath = Path.ChangeExtension(path, ".testplan");
Expand Down
4 changes: 0 additions & 4 deletions YarnSpinner/Dialogue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -754,10 +754,6 @@ public void Continue()
/// <summary>
/// Immediately stops the <see cref="Dialogue"/>.
/// </summary>
/// <remarks>
/// The <see cref="DialogueCompleteHandler"/> will not be called if the
/// dialogue is ended by calling <see cref="Stop"/>.
/// </remarks>
public void Stop()
{
if (this.vm != null)
Expand Down

0 comments on commit 1fae2a5

Please sign in to comment.