From 3a4ea4645d15d3d2e855d90967a9404a0facb434 Mon Sep 17 00:00:00 2001 From: Chris Langsenkamp Date: Tue, 2 Jun 2020 10:42:50 -0400 Subject: [PATCH] doc: fixed typos in readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15e1690f5..a870eabfa 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ Mirror is optimized for **ease of use** and **probability of success**. Projects With Mirror, the **Server & Client are ONE** project _(hence the name)_. Instead of having one code base for the server and one for the client, we simply use the same code for both of them. * `[Server]` / `[Client]` tags can be used for the server-only and client-only parts. -* `[Command]` are used for Client->Server, and `[ClientRpc]` / `[TargetRpc]` for Server->Client communication. -* `[SyncVar]`s and `SyncList`s are used to automatically synchronize state. +* `[Command]`'s are used for Client->Server, and `[ClientRpc]` / `[TargetRpc]` for Server->Client communication. +* `[SyncVar]`'s and `SyncList`'s are used to automatically synchronize state. What previously required **10.000** lines of code, now takes **1.000** lines of code. Therein lies the **magic of Mirror**.