diff --git a/docs/tutorials/05-intermediate-representation.md b/docs/tutorials/05-intermediate-representation.md index b9549f6..05d58b0 100644 --- a/docs/tutorials/05-intermediate-representation.md +++ b/docs/tutorials/05-intermediate-representation.md @@ -125,13 +125,14 @@ enum class ValueType { ````c++ enum TypeID { // Primitive types - VoidTyID, //空返回值 - LabelTyID, //标签类型 + VoidTyID, // 空返回值 + LabelTyID, // 标签类型 // Derived types - IntegerTyID, //整数类型 - FunctionTyID, //浮点数类型 - PointerTyID //指针类型 + IntegerTyID, // 整数类型 + FloatTyID, // 浮点数类型 + FunctionTyID, // 函数类型 + PointerTyID // 指针类型 }; ````