chore: fix typo in a method name.

This commit is contained in:
Artem Kobzar
2022-08-29 18:05:45 +00:00
committed by Space
parent 8b826a865b
commit 43ce805499
4 changed files with 6 additions and 6 deletions
@@ -347,7 +347,7 @@ fun IrBuilderWithScope.irConcat() =
fun IrBuilderWithScope.irVararg(elementType: IrType, values: List<IrExpression>) =
IrVarargImpl(startOffset, endOffset, context.irBuiltIns.arrayClass.typeWith(elementType), elementType, values)
fun IrBuilderWithScope.irRawFunctionReferefence(type: IrType, symbol: IrFunctionSymbol) =
fun IrBuilderWithScope.irRawFunctionReference(type: IrType, symbol: IrFunctionSymbol) =
IrRawFunctionReferenceImpl(startOffset, endOffset, type, symbol)
fun IrBuilderWithScope.irFunctionReference(type: IrType, symbol: IrFunctionSymbol) =