From 78b078badab71598c740de9a3e57ab74ac2ec2ae Mon Sep 17 00:00:00 2001 From: Dorkian Date: Tue, 10 Feb 2026 10:58:15 -0600 Subject: [PATCH] Fix typo in ReadWriteFs description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7825eae5..b1a36db2 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ await env.exec("cat package.json"); // reads from disk await env.exec('echo "modified" > package.json'); // stays in memory ``` -**ReadWriteFs** - Direct read-write access to a real directory. Use this if you want the agent to be agle to write to your disk: +**ReadWriteFs** - Direct read-write access to a real directory. Use this if you want the agent to be able to write to your disk: ```typescript import { Bash } from "just-bash";