Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dclipca committed Feb 26, 2025
1 parent 0878aee commit abcefaf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="WireMock.Net" Version="1.7.2" />
<PackageReference Include="WireMock.Net" Version="1.7.3" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion SpongeEngine.SubtitleSharp/SubtitleCue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public SubtitleCue()
/// <returns>A string showing the start and end times and the subtitle text, with each line separated by a new line.</returns>
public override string ToString()
{
return $"StartTime={StartTime}, EndTime={EndTime}, Lines{string.Join("", Lines)}";
return $"StartTime={StartTime}, EndTime={EndTime}, Lines={string.Join("", Lines)}";
}
}
}

0 comments on commit abcefaf

Please sign in to comment.