From b67e0119304d4a4ed63cc30aeb417fed17276fac Mon Sep 17 00:00:00 2001 From: Ilya Kirillov Date: Fri, 28 Jan 2022 17:21:34 +0100 Subject: [PATCH] Docs: fix small typos --- docs/analysis/analysis-api/analysis-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/analysis/analysis-api/analysis-api.md b/docs/analysis/analysis-api/analysis-api.md index b75c855a47e..ff99c1cfdc5 100644 --- a/docs/analysis/analysis-api/analysis-api.md +++ b/docs/analysis/analysis-api/analysis-api.md @@ -6,9 +6,9 @@ Analysis API is an API which allows analysing Kotlin code and retrieve compiler- expression types, symbols, smartcast, and many others. Analysis API is an API which is used to implement Kotlin Plugin 2.0 which is under active development now. -Analysis API is Kotlin compioler implemetnation independent . That means that it do not expose any Kotlin compiler internals. +Analysis API is Kotlin compiler implementation independent . That means that it do not expose any Kotlin compiler internals. -Analysis API itself is a just set of interfaces/abstraact classes without specific implementation inside. But there are two implementations +Analysis API itself is a just set of interfaces/abstract classes without specific implementation inside. But there are two implementations currently available. * FIR-based implementation. FIR is a new compiler frontend which is a part of K2 Kotlin compiler. Read more: