From 85894ae1f1d9d97bc39eabd3d80195a6175fb996 Mon Sep 17 00:00:00 2001 From: Avril Date: Sun, 24 May 2020 05:25:57 +0100 Subject: [PATCH] nothing of note --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6fa254c..5ab1917 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Terminal Synchroniser -Termsync is a **.NET Core** library for synchronising terminal io in an asyncronous contex. +Termsync is a **.NET Core** library for synchronising terminal io in an asynchronous contex. It guarantees user keystrokes into the console are never split up by `WriteLines()`s happening on other threads. Also exposed is a global `Channel` object for reading user input lines asynchronously. @@ -26,7 +26,7 @@ Start the worker that reads and writes to `Console`. ``` ### Write lines -Line writes are asyncronous, await them to yield until the line has been displayed in the `Console`. +Line writes are asynchronous, await them to yield until the line has been displayed in the `Console`. ``` c# await Terminal.WriteLine("A line.") ```