Skip to content

Commit 65c5ed7

Browse files
authored
Merge pull request #87 from kodsurfer/86
Fix build errors
2 parents e3233be + 2bbbf0c commit 65c5ed7

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

_posts/2022/06/2022-06-19-eoc-test.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: yegor256
77

88
There is [eoc](https://github.com/objectionary/eoc),
99
a command line tool that helps you automate compilation, transpilation,
10-
and execution of simple EO programms. With this tool you can also
10+
and execution of simple EO programs. With this tool you can also
1111
create and execute unit tests. Just name them `*-test.eo` and add
1212
metas `+junit` to them.
1313

_posts/2022/12/2022-12-02-java-atoms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: yegor256
88
There are "atoms" in [EO](https://www.eolang.org) language, which are objects implemented by
99
the runtime platform, not by a composition of other EO objects. Most
1010
notable examples of atoms are `int.plus`, `float.times`, and
11-
`bool.while`. Here is a quick intruction to creating your own
11+
`bool.while`. Here is a quick instruction to creating your own
1212
atoms.
1313

1414
<!--more-->
@@ -86,7 +86,7 @@ Then, using `this.add()` you configure the attributes of the atom,
8686
which you can later use inside the code encapsulated by the instance of the `AtComposite`
8787
class.
8888

89-
The attibute you add with `this.add("φ")` is the "body" of the atom.
89+
The attribute you add with `this.add("φ")` is the "body" of the atom.
9090
It will be evaluated when the atom will be dataized.
9191

9292
Then, using the class `Param` you can get the value of any incoming attribute

_posts/2023/01/2023-01-12-declarative-while-nested.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Here, we have two `while` loops one inside the other. Initially `x` is set to `0
4545
The outer loop continues while `x` lower than `10`. Inner loop executes its body
4646
twice every time it's dataized.
4747

48-
So what do you think the `x` will be after dataization fo the whole program?
48+
So what do you think the `x` will be after dataization of the whole program?
4949
The answer is `15` and here is why.
5050

5151
Every time the inner `while` is dataized, `x` is incremented by `3`: two times as

_posts/2024/05/2024-05-02-rho-sigma-delta-lambda.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The same functionality can be achieved in EO:
8686
^.type
8787
8888
animal "Cat" > cat
89-
cat.voice > moew # I'm a Cat
89+
cat.voice > meow # I'm a Cat
9090
9191
animal "Dog" > dog
9292
dog.voice > woof # I'm a Dog

typos.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
2+
# SPDX-License-Identifier: MIT
3+
4+
[default.extend-words]
5+
Vitaliy = "Vitaliy"

0 commit comments

Comments
 (0)