From bcca13f06c005cb32e9cc731eccec53f558a71cd Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Fri, 6 Mar 2026 01:16:08 +0100 Subject: [PATCH] Fix mistakes in docs --- docs/README.md | 2 +- docs/editor.md | 2 +- docs/library-api.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index 548d867..12935e6 100644 --- a/docs/README.md +++ b/docs/README.md @@ -16,7 +16,7 @@ Each line is one statement. There are no multi-line expressions. ### Running a script from the command line ```bash -dotnet run --project YesNt.Interpreter.App -- path/to/script.ynt +yesnt path/to/script.ynt ``` ### Hello world diff --git a/docs/editor.md b/docs/editor.md index 5daf983..36c96d6 100644 --- a/docs/editor.md +++ b/docs/editor.md @@ -5,7 +5,7 @@ ## Start the editor ```bash -dotnet run --project YesNt.CodeEditor -- [optional-path-to-file.ynt] +yesntcode [optional-path-to-file.ynt] ``` If you pass a file path, it is loaded on startup. diff --git a/docs/library-api.md b/docs/library-api.md index bb6fd1a..1fcfd87 100644 --- a/docs/library-api.md +++ b/docs/library-api.md @@ -1,6 +1,6 @@ # YesNt Library API -The `YesNt.Interpreter` project is a .NET 8 class library. You can reference it from any C# project +The `YesNt.Interpreter` project is a .NET 10 class library. You can reference it from any C# project to embed the YesNt interpreter and run scripts programmatically. ---