1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 20:07:25 +08:00

Make yaml line strings verbatim

This commit is contained in:
Joseph Madamba 2023-03-11 21:35:52 -08:00
parent e327993d11
commit 0cf69a1084
No known key found for this signature in database
GPG Key ID: 8B746C7BDDF0BD76

View File

@ -30,11 +30,11 @@ namespace osu.Game.Overlays.Wiki.Markdown
{ {
switch (line.ToString()) switch (line.ToString())
{ {
case "outdated: true": case @"outdated: true":
isOutdated = true; isOutdated = true;
break; break;
case "needs_cleanup: true": case @"needs_cleanup: true":
needsCleanup = true; needsCleanup = true;
break; break;
} }