Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Apr 11, 2024
1 parent 930ae5c commit 8e0c762
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ internal class DokkaSymbolVisitor(
* - delegating members
*/
val isDeclaration = callableSymbol.origin == KtSymbolOrigin.SOURCE || callableSymbol.origin == KtSymbolOrigin.LIBRARY
if (!isDeclaration) {
if (isDeclaration) {
return DRIWithOverridden(getDRIFromSymbol(callableSymbol), wasOverriddenBy)

} else { // fake, synthetic, delegating
Expand Down

0 comments on commit 8e0c762

Please sign in to comment.