From 1a478f65e3c63d03adaf7fcb20410b6feca3e444 Mon Sep 17 00:00:00 2001 From: Alex Ruddick Date: Mon, 13 May 2024 23:44:23 -0500 Subject: [PATCH] Fix typo. Closes #84 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 48ff20b..0e26b57 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ import asyncio from ika import Hotplate, OverheadStirrer async def get(): - async with OverheadStirrer('ip-address:port') as strirrer: + async with OverheadStirrer('ip-address:port') as stirrer: print(await stirrer.get()) async with Hotplate('ip-address:port') as hotplate: print(await hotplate.get())