Skip to content

Commit 1212615

Browse files
committed
Fix typos
Found via `typos --format brief`
1 parent d9eb966 commit 1212615

11 files changed

Lines changed: 18 additions & 18 deletions

specs/android/push_deeplink_onto_android_device.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ tags:
99
description: Uses adb to push a deeplink onto an Android device.
1010
arguments:
1111
- name: your_app_package_name
12-
description: The package name of the app that you want to recieve the deeplink.
12+
description: The package name of the app that you want to receive the deeplink.
1313
default_value: com.my.app.package
1414
- name: deeplink
1515
description: The deeplink you want to send (eg. `app://open.my.app`)

specs/android/send_firebase_push_notification.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tags:
1313
description: Uses adb to push a Firebase push notification to your local emulator
1414
arguments:
1515
- name: your_app_package_name
16-
description: The package name of the app that you want to recieve the notification. It has to have implemented the reciever for it to work.
16+
description: The package name of the app that you want to receive the notification. It has to have implemented the receiver for it to work.
1717
default_value: com.my.app.package
1818
- name: notification_title
1919
description: The title of the notification

specs/brew/install_a_specific_version_of_a_homebrew_formula.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ tags:
66
description: "Install a specific version of a formula using Homebrew. To list all available versions, you can run `brew search {{formula_name}}@`."
77
arguments:
88
- name: formula_name
9-
description: The fomula to install
9+
description: The formula to install
1010
default_value: ~
1111
- name: version_name
12-
description: "The version of the formula to install. You can ensure this version is availalble on homebrew by running `brew search {{formula_name}}`"
12+
description: "The version of the formula to install. You can ensure this version is available on homebrew by running `brew search {{formula_name}}`"
1313
default_value: ~
1414
source_url: "https://stackoverflow.com/questions/3987683/homebrew-install-specific-version-of-formula"
1515
author: Debilski

specs/file_manipulation/recursively_find_and_replace_within_a_directory.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tags:
55
- file manipulation
66
- sed
77
- grep
8-
description: Replaces all occurences of a string recursively within a directory
8+
description: Replaces all occurrences of a string recursively within a directory
99
arguments:
1010
- name: old_text
1111
description: The text that should be replaced

specs/file_manipulation/sort_a_file_by_line_length.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ command: "cat {{file_name}} | awk '{ print length, $0 }' | sort -n -s | cut -d\"
44
tags:
55
- file manipulation
66
- awk
7-
description: "Sorts a text file by line length (including spaces). The `-s` flag indicates that any lines that are the same length are kept in the relative order that they ocurred in the input."
7+
description: "Sorts a text file by line length (including spaces). The `-s` flag indicates that any lines that are the same length are kept in the relative order that they occurred in the input."
88
arguments:
99
- name: file_name
1010
description: The name of the file to sort.

specs/git/modify_the_most_recent_commit_message.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Modify the most recent commit message
33
command: "git commit --amend -m \"{{new_commit_message}}\""
44
tags:
55
- git
6-
description: "Ammends the most recent git commit with a new message. This will not update the commit on a remote branch unless you force push the branch,"
6+
description: "Amends the most recent git commit with a new message. This will not update the commit on a remote branch unless you force push the branch,"
77
arguments:
88
- name: new_commit_message
99
description: The new commit message

specs/git/squash_last_n_commits_together.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Squash last n commits together
33
command: "git reset --soft HEAD~{{num_commits}} && git commit"
44
tags:
55
- git
6-
description: "Squashes the last n commits together. This approach requires rewriting a commit message for the new sqashed changes, unlike running `git rebase`."
6+
description: "Squashes the last n commits together. This approach requires rewriting a commit message for the new squashed changes, unlike running `git rebase`."
77
arguments:
88
- name: num_commits
99
description: The number of commits that should be squashed together

specs/git/undo_git_add.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Undo git add
33
command: "git reset {{file}}"
44
tags:
55
- git
6-
description: "Removes a file that was staged for commit by `git add`. Executing `git reset` withou any file name will unstage all changes."
6+
description: "Removes a file that was staged for commit by `git add`. Executing `git reset` without any file name will unstage all changes."
77
arguments:
88
- name: file
99
description: The file to unstage

specs/shell/chain_commands_together_pipe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Chain commands together by forwarding output as input to the next command
33
command: "{{command_1}} | {{command_2}}"
44
tags:
55
- shell
6-
description: Executs command_1 and passes the output as input to command_2
6+
description: Executes command_1 and passes the output as input to command_2
77
arguments:
88
- name: command_1
99
description: The first command to run (whose output will be passed to the second command)

specs/sql/migrate-from-mysql-database-to-postgressql-database.yaml renamed to specs/sql/migrate-from-mysql-database-to-postgresql-database.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ command: "pgloader mysql://{{mysql_username}}:{{mysql_password}}@{{mysql_hostnam
44
tags:
55
- postgresql
66
- mysql
7-
description: Loads data from the MySQL database, transforms it to PostgresSQL compatible format and uploads it to the PostgresSQL database. Note - it requires pgloader to be installed and both PostgresSQL and MySQL hosts are accessible from the machine running this script.
7+
description: Loads data from the MySQL database, transforms it to PostgreSQL compatible format and uploads it to the PostgreSQL database. Note - it requires pgloader to be installed and both PostgreSQL and MySQL hosts are accessible from the machine running this script.
88
arguments:
99
- name: mysql_username
1010
description: The username for the MySQL database.
@@ -22,21 +22,21 @@ arguments:
2222
description: The name of the MySQL database.
2323
default_value: ~
2424
- name: postgres_username
25-
description: The username for the Postgres database.
25+
description: The username for the PostgreSQL database.
2626
default_value: ~
2727
- name: postgres_password
28-
description: The password for the Postgres database.
28+
description: The password for the PostgreSQL database.
2929
default_value: ~
3030
- name: postgres_hostname
31-
description: The hostname for the Postgres database.
31+
description: The hostname for the PostgreSQL database.
3232
default_value: ~
3333
- name: postgres_port
34-
description: The port for the Postgres database.
34+
description: The port for the PostgreSQL database.
3535
default_value: 5432
3636
- name: postgres_database_name
37-
description: The name of the Postgres database.
37+
description: The name of the PostgreSQL database.
3838
default_value: ~
3939
source_url: "https://docs.dipak.tech/database/postgres/postgres-migration"
4040
author: Dipak Parmar
4141
author_url: "https://github.com/dipakparmar"
42-
shells: []
42+
shells: []

0 commit comments

Comments
 (0)