Skip to content

Commit

Permalink
Fix spelling errors (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
uberhacker authored Apr 29, 2024
1 parent 0e281aa commit 98747ec
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install dependencies
run: npm clean-install --prefer-offline --frozen-lockfile

# Let's do tests rq just to make sure we dont push something that is fundamentally broken
# Let's do tests real quick just to make sure we don't push something that is fundamentally broken
- name: Lint code
run: npm run lint
- name: Run unit tests
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## UNRELEASED - [DATE_TBD](https://github.com/lando/backdrop/releases/tag/UNRELEASED)
* Fix spelling errors. [#48](https://github.com/lando/backdrop/issues/48)

## v1.3.0 - [March 8, 2024](https://github.com/lando/backdrop/releases/tag/v1.3.0)
* Updated to latest database services.

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const landoPlugin = name.replace('@lando/', '');

export default defineConfig({
title: 'Lando Backdrop Plugin',
description: 'The offical Lando plugin for Backdrop.',
description: 'The official Lando plugin for Backdrop.',
landoDocs: 3,
landoPlugin,
version,
Expand Down
2 changes: 1 addition & 1 deletion docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ config:
backdrush: false
```
Note that if the above config options are not enough, all Lando recipes can be further [extended and overriden](https://docs.lando.dev/core/v3/recipes.html#extending-and-overriding-recipes).
Note that if the above config options are not enough, all Lando recipes can be further [extended and overridden](https://docs.lando.dev/core/v3/recipes.html#extending-and-overriding-recipes).
## Choosing a php version
Expand Down
2 changes: 1 addition & 1 deletion docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ plugins:
"@lando/backdrop": ../..
```
This tells Lando that _this_ app should use the source version of the `@lando/backdrop` plugin you cloned down in the installation. This is useful because it allows you to isolate development within this repo without interferring with any other apps using the stable and global version of the plugin.
This tells Lando that _this_ app should use the source version of the `@lando/backdrop` plugin you cloned down in the installation. This is useful because it allows you to isolate development within this repo without interfering with any other apps using the stable and global version of the plugin.

This means that you should _almost always_ develop against apps in the `examples` folder and that those apps should _always_ contain the above `plugins` config. If you have an extant Lando application you want to develop against you can temporarily tell it to use the cloned down version of the plugin with the same line.

Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ lando plugin-add @lando/backdrop
```

```sh [hyperdrive]
# @NOTE: This doesn't actaully work yet
# @NOTE: This doesn't actually work yet
hyperdrive install @lando/backdrop
```

Expand Down
2 changes: 1 addition & 1 deletion examples/backdrop-downstreamer-1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lando mysql -V | grep 8.0
# Should use the default database connection info
lando mysql -ubackdrop -pbackdrop backdrop -e quit

# Should use the defauly mysql8 config file
# Should use the default mysql8 config file
lando ssh -s database -c "cat /opt/bitnami/mysql/conf/my_custom.cnf" | grep "LANDOBACKDROPMYSQL8CNF"
lando mysql -u root -e "show variables;" | grep innodb_lock_wait_timeout | grep 127
```
Expand Down
2 changes: 1 addition & 1 deletion examples/backdrop-downstreamer-2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lando mysql -V | grep 8.0
# Should use the default database connection info
lando mysql -ubackdrop -pbackdrop backdrop -e quit

# Should use the defauly mysql8 config file
# Should use the default mysql8 config file
lando ssh -s database -c "cat /opt/bitnami/mysql/conf/my_custom.cnf" | grep "LANDOBACKDROPMYSQL8CNF"
lando mysql -u root -e "show variables;" | grep innodb_lock_wait_timeout | grep 127
```
Expand Down
2 changes: 1 addition & 1 deletion examples/backdrop-mysql8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ lando mysql -V | grep "mysql"| grep "Ver 8.0.22"
# Should be able to connect to the database with the default creds
lando mysql backdrop -e quit

# Should use the defauly mysql8 config file
# Should use the default mysql8 config file
lando ssh -s database -c "cat /opt/bitnami/mysql/conf/my_custom.cnf" | grep "LANDOBACKDROPMYSQL8CNF"
lando mysql -u root -e "show variables;" | grep innodb_lock_wait_timeout | grep 127
```
Expand Down
2 changes: 1 addition & 1 deletion examples/backdrop-nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lando ssh -s appserver -c "curl -L appserver_nginx" | grep "NGINX"
# Should run using nginx if specified
lando ssh -s appserver -c "curl -IL appserver_nginx" | grep Server | grep nginx

# Should use nginx 1.25 by defualt
# Should use nginx 1.25 by default
lando nginx -v 2>&1 | grep "nginx version" | grep "nginx/1.25"

# Should use the php version specified by the user eg 7.4
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-backdrush.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ durl="https://github.com/drush-ops/drush/releases/download/${drush}/drush.phar"
dtmp="/tmp/drush.phar"
dbin="/usr/local/bin/drush"

# install drush if we dont have it
# install drush if we don't have it
# @TODO: what about different versions? in the recipe maybe some validation?
if ! command -v drush &> /dev/null; then
# cleanup
Expand Down

0 comments on commit 98747ec

Please sign in to comment.