From 258be08a4017219fd446214d25413d77e183d082 Mon Sep 17 00:00:00 2001 From: AJ Alt Date: Sat, 24 Jun 2017 11:19:43 -0700 Subject: [PATCH] Fix typo in LIBRARIES.md (#702) --- LIBRARIES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LIBRARIES.md b/LIBRARIES.md index 66e40407d7e..e4564f147f5 100644 --- a/LIBRARIES.md +++ b/LIBRARIES.md @@ -4,7 +4,7 @@ To produce a library with Kotlin/Native compiler use `-produce library` or `-p library` flag. For example: - $ kotlic foo.kt -p library -o bar + $ kotlinc foo.kt -p library -o bar the above command will produce a `bar.klib` with compiled contents of `foo.kt`.