Skip to content

Commit 71d526b

Browse files
committed
docs: update typos and errors
1 parent d77385c commit 71d526b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/about/history.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ The story behind the development of this project.
55
## Story
66

77
Earlier on, I had released [viteshell v0.6.0](https://github.com/henryhale/viteshell).
8-
It is a minimal bask-like shell implementation written in TypeScript.
8+
It is a minimal bash-like shell implementation written in TypeScript.
99
During it's development, I learnt how to build a small custom parser for parsing user input into an abstract syntax tree
1010
that eventually made the implementation possible.
1111

1212
On the morning of *30th December 2023*, I was browsing the internet when I landed on an awesome [youtube video](https://www.youtube.com/watch?v=8VB5TY1sIRo)
1313
describing how to create a programming language from scratch using TypeScript.
14-
Watch this youtube video inspired me into thinking, *"What I created an simple custom scripting language that would solve Mathematics problems?".*
14+
Watching this youtube video inspired me into thinking, *"What I created an simple custom scripting language that would solve Mathematics problems?".*
1515

1616
My initial idea of this language was that plain and simple. On *4th January 2024*, I made the first working version from which I continued to fix several logical bugs as well as adding several features like builtin functions.
1717

18-
*5th January 2024* is launch day :tada:
18+
*5th January 2024* was launch day :tada:

docs/guide/programs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ m
5050
const result = evaluate(script);
5151

5252
console.log(result);
53-
// Output: { value: 2, scope: { variables: { x1: 1, y1: 1, x2: 3, y2: 5, m: 2 } } }
53+
// Output: { value: 2.8, scope: { variables: { x1: 1, y1: 1, x2: 3, y2: 5, m: 2 } } }
5454
```
5555
:::

0 commit comments

Comments
 (0)