Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comments #3162

Open
wants to merge 1 commit into
base: v6/develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion installer/data/archlinux
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ install_sql() {
if [[ -d "/var/lib/mysql/operationaldb/" ]]; then
read -p "Old operationaldb repository detected. Would you like to overwrite it ? (Default: No) [Y]es [N]o [E]xit " choice
case "$choice" in
[yY]* ) perform_step $(MYSQL_PWD=$oldpassword $sql -u root -e "DROP DATABASE IF EXISTS operationaldb;") "Overwritting slq repository";;
[yY]* ) perform_step $(MYSQL_PWD=$oldpassword $sql -u root -e "DROP DATABASE IF EXISTS operationaldb;") "Overwriting slq repository";;
[eE]* ) text_color $RED"Installer stopped by user"; exit;;
* ) text_color $GREEN"Keeping previous sql repository"; NEW_DB=FALSE;;
esac
Expand Down
2 changes: 1 addition & 1 deletion installer/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ install_sql() {
if [[ -d "/var/lib/mysql/operationaldb/" ]]; then
read -p "Old operationaldb repository detected. Would you like to overwrite it ? (Default: No) [Y]es [N]o [E]xit " choice
case "$choice" in
[yY]* ) perform_step $(MYSQL_PWD=$oldpassword $sql -u root -e "DROP DATABASE IF EXISTS operationaldb;") "Overwritting slq repository";;
[yY]* ) perform_step $(MYSQL_PWD=$oldpassword $sql -u root -e "DROP DATABASE IF EXISTS operationaldb;") "Overwriting slq repository";;
[eE]* ) text_color $RED"Installer stopped by user"; exit;;
* ) text_color $GREEN"Keeping previous sql repository"; NEW_DB=FALSE;;
esac
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class HandleProtocolMessageCommand extends Command {
const blockchainAssertionSizeInKb = blockchainAssertionSize / BYTES_IN_KILOBYTE;
if (!agreementData) {
this.logger.warn(
`Unable to fetch agreement data in handle protocol messsage command for agreement id: ${agreementId}, blockchain id: ${blockchain}`,
`Unable to fetch agreement data in handle protocol message command for agreement id: ${agreementId}, blockchain id: ${blockchain}`,
);
return {
errorMessage: 'Unable to fetch agreement data.',
Expand Down
2 changes: 1 addition & 1 deletion test/bdd/steps/hooks.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ After(function afterMethod(testCase, done) {
testCase.result.status,
' and duration: ',
testCase.result.duration,
' miliseconds.',
' milliseconds.',
);
done();
});
Expand Down