ソースを参照

Match Toml spec

ManlyMarco 5 年 前
コミット
1523ad3eaa
1 ファイル変更1 行追加1 行削除
  1. 1 1
      BepInEx/Configuration/ConfigDefinition.cs

+ 1 - 1
BepInEx/Configuration/ConfigDefinition.cs

@@ -84,7 +84,7 @@ namespace BepInEx.Configuration
 		/// <inheritdoc />
 		public override string ToString()
 		{
-			return Section + " / " + Key;
+			return Section + "." + Key;
 		}
 	}
 }