Skip to content
This repository was archived by the owner on May 17, 2023. It is now read-only.

Commit 39b7b98

Browse files
MiladinhoSebastianAigner
authored andcommitted
Update 02_Project_Setup.md
fixed grammar
1 parent 6e5b5bc commit 39b7b98

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Full Stack Web App with Kotlin Multiplatform/02_Project_Setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Let's start with an overview of the structure for our multiplatform Kotlin proje
1717
Like all Kotlin projects targeting more than one platform, our project uses the Kotlin `multiplatform` Gradle plugin. It provides a single point to configure the targets we need for our application (in our case Kotlin/JVM and Kotlin/JS), and exposes a number of lifecycle tasks for them. For a more detailed look, check out the reference on [Building Multiplatform Projects with Gradle](https://kotlinlang.org/docs/mpp-intro.html). Additionally, we add two more plugins:
1818

1919
- The [`application`](https://docs.gradle.org/current/userguide/application_plugin.html) plugin, which takes care of running the server part of our application, which lives on the JVM.
20-
- The [`serialization`](https://github.com/Kotlin/kotlinx.serialization#gradle) plugin, which ensures provides multiplatform conversions between Kotlin objects and their JSON text representation JSON is available.
20+
- The [`serialization`](https://github.com/Kotlin/kotlinx.serialization#gradle) plugin, which provides multiplatform conversions between Kotlin objects and their JSON text representation JSON is available.
2121

2222
```kotlin
2323
plugins {
@@ -74,4 +74,4 @@ Each source set also corresponds to a folder in the `src` directory. In our proj
7474

7575
For more detailed information on source sets, check out the [respective section](https://kotlinlang.org/docs/reference/mpp-discover-project.html#source-sets) in the guide. There are a few other snippets that are yet to be explained – but we will discuss them at later chapters in this hands-on, when they become relevant to what we are trying to achieve.
7676

77-
For now, we will focus on building our application, starting with a strong backbone – a simple API server.
77+
For now, we will focus on building our application, starting with a strong backbone – a simple API server.

0 commit comments

Comments
 (0)