浏览代码

Generic Type Typo

Usagirei 6 年之前
父节点
当前提交
2ab00deeb8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      BepInEx/ConfigWrapper.cs

+ 1 - 1
BepInEx/ConfigWrapper.cs

@@ -5,7 +5,7 @@ namespace BepInEx
 {
     public interface IConfigConverter<T>
     {
-        string ConvertToString<T>(T value);
+        string ConvertToString(T value);
         T ConvertFromString(string str);
     }