Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 0035987

Browse files
authored
Merge pull request #70 from ricardotk/typos
Fix typos
2 parents 8d1259f + 86f6ca0 commit 0035987

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Docker/json.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A Lua table is considered to be an array if and only if its set of keys is a
1313
consecutive sequence of positive integers starting at 1. Arrays are encoded like
1414
so: `[2, 3, false, "hi"]`. Any other type of Lua table is encoded as a json
1515
object, encoded like so: `{"key1": 2, "key2": false}`.
16-
Because the Lua nil value cannot be a key, and as a table value is considerd
16+
Because the Lua nil value cannot be a key, and as a table value is considered
1717
equivalent to a missing key, there is no way to express the json "null" value in
1818
a Lua table. The only way this will output "null" is if your entire input obj is
1919
nil itself.

Docker/tcpclient.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ TCP_CLIENT = {
1919
end,
2020

2121
OnError = function (TCPConn, ErrorCode, ErrorMsg)
22-
-- The specified error has occured on the link
22+
-- The specified error has occurred on the link
2323
-- No other callback will be called for this link from now on
2424
-- For a client link being connected, this reports a connection error (destination unreachable etc.)
2525
-- It is an Undefined Behavior to send data to a_TCPLink in or after this callback

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A simple Minecraft Docker client, to visualize and manage Docker containers.
1818

1919
The Minecraft client hasn't been modified, just get the official release.
2020

21-
2. **Pull or build Dockercraft image:** (an offical image will be available soon)
21+
2. **Pull or build Dockercraft image:** (an official image will be available soon)
2222

2323
```
2424
docker pull gaetan/dockercraft

0 commit comments

Comments
 (0)