Fix mistakes in docs

This commit is contained in:
Stone_Red
2026-03-06 01:16:08 +01:00
parent 707b938cec
commit bcca13f06c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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.
+1 -1
View File
@@ -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.
---