chore: fix capitalisation

This commit is contained in:
Anna 2024-06-19 10:46:20 -04:00
parent d4c237292d
commit feb08ab877
Signed by: anna
GPG Key ID: D0943384CD9F87D1

View File

@ -81,7 +81,7 @@ public sealed class Plugin : IDalamudPlugin {
this.ResetReplacementPointers(); this.ResetReplacementPointers();
} }
private static async Task<String> LoadEmbeddedReplacements() { private static async Task<string> LoadEmbeddedReplacements() {
using var stream = typeof(Plugin).Assembly.GetManifestResourceStream("TimePasses.replacements.yaml"); using var stream = typeof(Plugin).Assembly.GetManifestResourceStream("TimePasses.replacements.yaml");
using var reader = new StreamReader(stream!); using var reader = new StreamReader(stream!);
return await reader.ReadToEndAsync(); return await reader.ReadToEndAsync();