Skip to content

Commit 106f433

Browse files
SebastienChauvinkoshachy
authored andcommitted
Fix type in sample code
1 parent 04654ad commit 106f433

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/topics/ksp/ksp-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ the following:
114114
```kotlin
115115
class HelloFunctionFinderProcessor : SymbolProcessor() {
116116
// ...
117-
val functions = mutableListOf<KSClassDeclaration>()
117+
val functions = mutableListOf<KSFunctionDeclaration>()
118118
val visitor = FindFunctionsVisitor()
119119

120120
override fun process(resolver: Resolver) {
@@ -182,4 +182,4 @@ The table includes a list of popular libraries on Android and their various stag
182182
| Dagger | [Alpha](https://dagger.dev/dev-guide/ksp) |
183183
| Motif | [Alpha](https://github.com/uber/motif) |
184184
| Hilt | [In progress](https://dagger.dev/dev-guide/ksp) |
185-
| Auto Factory | [Not yet supported](https://github.com/google/auto/issues/982) |
185+
| Auto Factory | [Not yet supported](https://github.com/google/auto/issues/982) |

0 commit comments

Comments
 (0)