Skip to content

Commit b62aad7

Browse files
author
Josef Glatz
committed
[DOCUMENTATION] Fix misc typos in docu
1 parent dca0db8 commit b62aad7

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Documentation/COMMANDS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ All log commands are using a grep-filter (specified as optional argument)
7777
| | __ct mysql:restore typo3 dump.sql.xz__ -> xz'ed (lzma'ed) sql dump |
7878
| | __ct mysql:restore typo3 dump.sql --filter=typo3__ -> No TYPO3 cache tables in dump |
7979
| ct mysql:restore | Create (and drops if already exists) a database and restore from a dump |
80-
| | Dump file can be plaintext, gziped, bzip2 or lzma compressed |
80+
| | Dump file can be plaintext, gzip, bzip2 or lzma compressed |
8181
| | and will automatically detected |
8282
| | __ct mysql:restore typo3 dump.sql.bz2__ |
8383
| ct mysql:convert | Convert character set and collation of a database |

Documentation/USAGE-DOCKER.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Docker creation
66

7-
You can easly create new docker instances (from my or a custom docker boilerplate) also with code intalization
7+
You can easily create new docker instances (from my or a custom docker boilerplate) also with code initialization
88
and Makefile running.
99

1010
```bash
@@ -32,8 +32,8 @@ ct docker:create foobar --code=git... --make=build --up
3232

3333
## Docker startup
3434

35-
The `docker:up` command will search the `docker-compose.yml` in the current parent directroy tree and
36-
execute `docker-compose` from this directroy - you don't have to change the current directroy.
35+
The `docker:up` command will search the `docker-compose.yml` in the current parent directory tree and
36+
execute `docker-compose` from this directory - you don't have to change the current directory.
3737

3838
Also the previous docker instance will be shut down to avoid port conflicts.
3939

@@ -45,7 +45,7 @@ ct docker:up
4545
## Custom docker commands
4646

4747
As `docker:up` the `docker:compose` will search the `docker-compose.yml` and will execute your command
48-
from this directroy.
48+
from this directory.
4949

5050
```bash
5151
# Stop docker instance
@@ -86,7 +86,7 @@ ct docker:exec ps
8686

8787
You can define a common CLI script entrypoint with the environment variable CLI_SCRIPT in your docker containers.
8888
The environment variable will be read by `ct docker:cli` and will be executed - you don't have to jump
89-
into your containers, you can start your CLI_SCRIPTs from the outide.
89+
into your containers, you can start your CLI_SCRIPTs from the outside.
9090

9191
```bash
9292
# Execute predefined cli command with argument "help" in "main" container
@@ -110,7 +110,7 @@ ct docker:sniff mysql
110110
```
111111

112112
## Docker cleanup
113-
Docker currently doesn't cleanup orphaned images or volumes so you have to cleanup your system regulary to get free disk space
113+
Docker currently doesn't cleanup orphaned images or volumes so you have to cleanup your system regularly to get free disk space
114114

115115
```bash
116116
ct docker:cleanup

Documentation/USAGE-MYSQL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ct mysql:list
1717

1818
# Debugging
1919

20-
The `ct mysql:querylog` and `ct mysql:slowlog` provides a convinent way to access the general query log
20+
The `ct mysql:querylog` and `ct mysql:slowlog` provides a convenient way to access the general query log
2121
and the slow log.
2222

2323
In the query log you can see all queries send and executed by the MySQL database.
@@ -67,7 +67,7 @@ Also the compression is automatically detected by file mime type.
6767
ct mysql:restore typo3 dump.sql
6868
```
6969

70-
# Datbase charset conversion
70+
# Database charset conversion
7171

7272
```bash
7373
# Convert database to UTF8

Documentation/USAGE-PHP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Composer (auto searching in path tree)
66

7-
Because you always need to jump into `composer.json` directroy `ct php:composer` will do this for you
7+
Because you always need to jump into `composer.json` directory `ct php:composer` will do this for you
88

99
```bash
1010
# Run composer install task

Documentation/USAGE-SYNC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ct share:restore --rsync
6969

7070
With `sync:deploy` you can push your files to your production servers.
7171
Please keep in mind that this feature is just an wrapped rsync and should only be
72-
the simplest solution for deployment. For more advanced or centralized deployemnt try
72+
the simplest solution for deployment. For more advanced or centralized deployment try
7373
solutions build on Jenkis, Ansible and others.
7474

7575
```bash

0 commit comments

Comments
 (0)