【修复】EmmeLua改为EmmyLua

main
yxy 2022-02-03 22:15:15 +08:00
parent f3949f9c72
commit a4df2de837
2 changed files with 4 additions and 4 deletions

View File

@ -101,9 +101,9 @@ namespace Luban.Job.Common.Defs
return type.Apply(LuaCommentTypeVisitor.Ins);
}
public static string EmmeLuaCommentType(TType type)
public static string EmmyLuaCommentType(TType type)
{
return type.Apply(EmmeLuaCommentTypeVisitor.Ins);
return type.Apply(EmmyLuaCommentTypeVisitor.Ins);
}
public static string LuaSerializeWhileNil(string bufName, string fieldName, TType type)

View File

@ -2,9 +2,9 @@ using Luban.Job.Common.Types;
namespace Luban.Job.Common.TypeVisitors
{
public class EmmeLuaCommentTypeVisitor : ITypeFuncVisitor<string>
public class EmmyLuaCommentTypeVisitor : ITypeFuncVisitor<string>
{
public static EmmeLuaCommentTypeVisitor Ins { get; } = new EmmeLuaCommentTypeVisitor();
public static EmmyLuaCommentTypeVisitor Ins { get; } = new EmmyLuaCommentTypeVisitor();
public string Accept(TBool type)
{