aboutsummaryrefslogtreecommitdiff
path: root/api
diff options
context:
space:
mode:
authorArtem Daugel-Dauge <daugeldauge@gmail.com>2021-10-16 11:06:32 +0300
committerJiaxiang Chen <jiaxiang@google.com>2021-10-16 18:07:55 -0700
commit40a1f2a88dbca5ef5b29fdc445787911c5a33874 (patch)
treeedf8653152fd0b96d134b06460486891f55520ae /api
parent14d4a0409de5d6e1625dd1227c884a99dc45b77e (diff)
downloadksp-40a1f2a88dbca5ef5b29fdc445787911c5a33874.tar.gz
Fix typo
Diffstat (limited to 'api')
-rw-r--r--api/src/main/kotlin/com/google/devtools/ksp/processing/SymbolProcessor.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/main/kotlin/com/google/devtools/ksp/processing/SymbolProcessor.kt b/api/src/main/kotlin/com/google/devtools/ksp/processing/SymbolProcessor.kt
index ea947a93..2acb77c5 100644
--- a/api/src/main/kotlin/com/google/devtools/ksp/processing/SymbolProcessor.kt
+++ b/api/src/main/kotlin/com/google/devtools/ksp/processing/SymbolProcessor.kt
@@ -21,7 +21,7 @@ import com.google.devtools.ksp.symbol.KSAnnotated
/**
* [SymbolProcessor] is the interface used by plugins to integrate into Kotlin Symbol Processing.
* SymbolProcessor supports multiple round execution, a processor may return a list of deferred symbols at the end
- * of every round, which will be passed to proceesors again in the next round, together with the newly generated symbols.
+ * of every round, which will be passed to processors again in the next round, together with the newly generated symbols.
* Upon Exceptions, KSP will try to distinguish the exceptions from KSP and exceptions from processors.
* Exceptions will result in a termination of processing immediately and be logged as an error in KSPLogger.
* Exceptions from KSP should be reported to KSP developers for further investigation.