core: improve comments in CallInfo

This commit is contained in:
lyken 2024-06-27 15:00:40 +08:00
parent 3087f77ed8
commit d0ea69b7ae
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ pub enum CallInfo {
self_type: Type,
operator: Cmpop,
},
/// "Normal" function calls that looks like `func(1, 2, 3)`.
/// The call was written as a normal function call, e.g., `func(1, 2, 3)`.
IsNormalFunctionCall,
}