Skip to content

Commit 39672e9

Browse files
committed
typos
1 parent d892842 commit 39672e9

File tree

10 files changed

+36
-16
lines changed

10 files changed

+36
-16
lines changed

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
2+
# SPDX-License-Identifier: MIT
3+
14
source 'https://rubygems.org'
25

36
gem 'jekyll', '~>4.3'

_layouts/default.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
2+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
3+
# SPDX-License-Identifier: MIT
4+
25
layout: default
36
---
47
<!DOCTYPE html>

_layouts/post.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
2+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
3+
# SPDX-License-Identifier: MIT
4+
25
layout: default
36
---
47

_layouts/static.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
2+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
3+
# SPDX-License-Identifier: MIT
4+
25
layout: default
36
---
47

_posts/2022/08/2022-08-31-new-while-dataization-result.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ is `FALSE`.
1818

1919
When the condition is `TRUE` we get the result of the last dataization object in the `while` loop.
2020

21-
When the condition is `FALSE` such dataization result become `FALSE`.
21+
When the condition is `FALSE` such dataization result becomes `FALSE`.
2222

2323
Let's check it out with examples. In this case, the result of condition `x.lt 6`
2424
is `TRUE` for at least one iteration. So the result of dataization `when-true` object is `6`:

_posts/2022/11/2022-11-25-xmir-guide.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ XMIR is a dialect of [XML](https://en.wikipedia.org/wiki/XML),
1111
which we use to represent a parsed
1212
[EO](https://www.eolang.org) object. It is a pretty simple format,
1313
which has a few
14-
important tricks, which I share below in this blog post. You may
14+
important tricks that I share below in this blog post. You may
1515
also want to check our [schema](https://en.wikipedia.org/wiki/XML_schema):
1616
[`XMIR.xsd`][xsd]
1717
(it is also [rendered in HTML](https://www.eolang.org/XMIR.html),
@@ -33,16 +33,16 @@ Consider this simple EO object that prints `"Hello, world!"`:
3333
"world!"
3434
```
3535

36-
If we parse it using `EoSyntax` class from [eo-parser],
36+
If we parse it using the `EoSyntax` class from [eo-parser],
3737
we will get this XMIR (or very similar):
3838

3939
```xml
40-
<object
40+
<object
4141
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
42-
dob="2024-12-27T11:00:08"
43-
ms="98"
42+
dob="2024-12-27T11:00:08"
43+
ms="98"
4444
revision="27abe8b"
45-
time="2025-04-17T09:32:04.455112Z"
45+
time="2025-04-17T09:32:04.455112Z"
4646
version="0.56.0"
4747
xsi:noNamespaceSchemaLocation="https://www.eolang.org/xsd/XMIR-0.56.0.xsd">
4848
<listing># App.
@@ -180,7 +180,7 @@ of the `<tail>` separated by spaces.
180180

181181
## Objects
182182

183-
The `<object>` element must contain only one `<o/>` element which represents an
183+
The `<object>` element must contain only one `<o/>` element which represents an
184184
object being parsed. The `<o/>` element may have a few optional attributes:
185185

186186
* `line` and `pos` are the number of the line where the object
@@ -194,7 +194,7 @@ There could be no other attributes.
194194

195195
## Special cases
196196

197-
1. The `<o/>` elements that have nested `<o>` element with `name` which
197+
1. The `<o/>` elements that have nested `<o>` element with `name` which
198198
value is `λ` are **atoms**. Atoms must not have `base` attribute:
199199
```xml
200200
<o name="try">
@@ -220,7 +220,7 @@ nested `<o>` element with text.
220220
</o>
221221
```
222222

223-
4. The `name` attribute of `<o/>` element may be **auto generated** by EO parser.
223+
4. The `name` attribute of `<o/>` element may be **auto generated** by EO parser.
224224
In such case it's look like:
225225
```xml
226226
<o name="a🌵104"/>
@@ -229,7 +229,7 @@ In such case it's look like:
229229
Such `name` consists of several parts:
230230
- char `a` (ascii 97) that stands for "auto-generated"
231231
- char `🌵` that is just a pretty character prohibited by EO grammar
232-
- number `104` which is joined line and position of the place where
232+
- number `104` which is joined line and position of the place where
233233
the object is found.
234234

235235
Such names are unique through entire XMIR.
@@ -239,7 +239,7 @@ Such names are unique through entire XMIR.
239239
```xml
240240
<o base="Q.org.eolang.number" as="α2"/>
241241
```
242-
Here the first character is `α` (alpha), the number `2` is the position of the
242+
Here the first character is `α` (alpha), the number `2` is the position of the
243243
attribute.
244244

245245
<hr/>

_posts/2023/08/2023-08-05-storing-objects-formed-differently-into-cage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ object `lisa` "was formed by" object `cat` and has the same "form"—"cat."
3535
Let's get back to the object `cage`. The object is used as temporary storage of objects in memory.
3636
It should be remembered that `cage` does not dataize a stored object.
3737

38-
Here is the typical example how `cage` was used before:
38+
Here is the typical example of how `cage` was used before:
3939

4040
```
4141
cage 0 > cg
@@ -47,7 +47,7 @@ seq > @
4747
Here we copy object `cage` and store the object `0` (which is "formed by" object `int`) in it, and
4848
then we write an object `lisa` to it.
4949

50-
Such behavior is prohibited now and will lead to exception throwing.
50+
Such behavior is prohibited now and will lead to an exception being thrown.
5151
Object `cage` can store inside only objects of the same "form."
5252

5353
The next code will work since object `cat` and `lisa` have the same "form"–"cat":

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,12 +195,12 @@ The last special thing we're observing is `λ` (Lambda) asset. Let's look at it
195195
- The `λ` asset, as well as the `φ` attribute, also allows reusing the attributes:
196196

197197
```
198-
[] > mars-termerature /float # measures the temperature on Mars and returns float
198+
[] > mars-temperature /float # measures the temperature on Mars and returns float
199199
200200
mars-temperature.div 10 > divided
201201
```
202202

203-
Here, as you may see, `mars-termerature` is the atom that does not have an attribute `div` and
203+
Here, as you may see, `mars-temperature` is the atom that does not have an attribute `div` and
204204
returns `float`. However, we can still retrieve the attribute `div` from it. It will go to the
205205
`λ` asset, execute it, do some calculations, return us some `float`, and the `div` attribute will
206206
be taken from this `float`.

css/main.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
22
---
3+
/**
4+
* SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
5+
* SPDX-License-Identifier: MIT
6+
*/
7+
38
@charset 'utf-8';
49

510
body {

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
---
2+
# SPDX-FileCopyrightText: Copyright (c) 2022-2025 Objectionary.com
3+
# SPDX-License-Identifier: MIT
4+
25
layout: default
36
title: "News About EO Programming Language"
47
description: |

0 commit comments

Comments
 (0)