Skip to content

Commit a092f02

Browse files
committed
Symbols.md: fix warning
1 parent 7f36897 commit a092f02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Writerside/topics/Symbols.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ val ktNamedFunction: KtNamedFunction = ...
9292

9393
analyze(ktNamedFunction) {
9494
val functionSymbol = ktNamedFunction.symbol
95-
// Although the PSI element is named 'KtNamedFunction', it can be an anonymous one (the name is 'null')
95+
// Although the PSI element is named 'KtNamedFunction',
96+
// it can be an anonymous one (the name is 'null')
9697
if (functionSymbol is KaNamedFunctionSymbol) {
9798
// Here we have a truly named function
9899
check(functionSymbol.isOperator)

0 commit comments

Comments
 (0)