Skip to content

Commit a5a9890

Browse files
authored
Fix some typos (found by codespell) (#613)
Signed-off-by: Stefan Weil <[email protected]>
1 parent e30ccb9 commit a5a9890

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

discourse-doctor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ print_done() {
327327
log "Publicly available log not generated."
328328
fi
329329
fi
330-
# The following is not in the web log file since it was copied above, which seems corect
330+
# The following is not in the web log file since it was copied above, which seems correct
331331
log
332332
log "You can examine the output of this script with "
333333
log "LESS=-Ri less $LOG_FILE"

templates/import/phpbb3.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ hooks:
2222
path: /etc/mysql/conf.d/import.cnf
2323
contents: |
2424
[mysqld]
25-
# disable InnoDB since it is extremly slow in Docker container
25+
# disable InnoDB since it is extremely slow in Docker container
2626
default-storage-engine=MyISAM
2727
default-tmp-storage-engine=MyISAM
2828
innodb=OFF

templates/import/vanilla.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ hooks:
2222
path: /etc/mysql/conf.d/import.cnf
2323
contents: |
2424
[mysqld]
25-
# disable InnoDB since it is extremly slow in Docker container
25+
# disable InnoDB since it is extremely slow in Docker container
2626
default-storage-engine=MyISAM
2727
default-tmp-storage-engine=MyISAM
2828
innodb=OFF

templates/postgres.13.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ run:
6464
required=$(($(du -sb /shared/postgres_data | awk '{print $1}') * 2))
6565
6666
if [ "$free_disk" -lt "$required" ]; then
67-
echo "WARNING: Upgrading PostgresSQL would require an addtional $(numfmt --to=si $(($required - $free_disk))) of disk space"
67+
echo "WARNING: Upgrading PostgreSQL would require an additional $(numfmt --to=si $(($required - $free_disk))) of disk space"
6868
echo "Please free up some space, or expand your disk, before continuing."
6969
echo ''
7070
echo 'To avoid upgrading change "templates/postgres.template.yml" TO "templates/postgres.12.template.yml" in containers/app.yml'

templates/postgres.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ run:
6464
required=$(($(du -sb /shared/postgres_data | awk '{print $1}') * 2))
6565
6666
if [ "$free_disk" -lt "$required" ]; then
67-
echo "WARNING: Upgrading PostgresSQL would require an addtional $(numfmt --to=si $(($required - $free_disk))) of disk space"
67+
echo "WARNING: Upgrading PostgreSQL would require an additional $(numfmt --to=si $(($required - $free_disk))) of disk space"
6868
echo "Please free up some space, or expand your disk, before continuing."
6969
echo ''
7070
echo 'To avoid upgrading change "templates/postgres.template.yml" TO "templates/postgres.12.template.yml" in containers/app.yml'

templates/web.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ run:
265265
266266
# move state out of the container this fancy is done to support rapid rebuilds of containers,
267267
# we store anacron and logrotate state outside the container to ensure its maintained across builds
268-
# later move this snipped into an intialization script
268+
# later move this snipped into an initialization script
269269
# we also ensure all the symlinks we need to /shared are in place in the correct structure
270270
# this allows us to bootstrap on one machine and then run on another
271271
- file:

0 commit comments

Comments
 (0)