From d8046b9994c1c56c18fcdfd4fbd8a619ddd12944 Mon Sep 17 00:00:00 2001 From: Avril Date: Sun, 24 May 2020 07:26:21 +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 6b07dc7..b2b5cbc 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 asynchronous 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. @@ -28,7 +28,7 @@ Start the worker that reads and writes to `Console`. ### Write lines Line writes are asynchronous, await them to yield until the line has been displayed in the `Console`. ``` c# - await Terminal.WriteLine("A line.") + await Terminal.WriteLine("A line."); ``` ### Read lines Line reads can take `CancellationToken`.