8000 fix grammar in error message by dothebart · Pull Request #6415 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

fix grammar in error message #6415

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

Merged
merged 1 commit into from
Sep 6, 2018
Merged
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
fix grammar in error message
  • Loading branch information
dothebart committed Sep 6, 2018
commit 322e0624deccd1cefa83b71bde0d8f49b7dd3413
2 changes: 1 addition & 1 deletion Installation/Windows/Plugins/AddToPath.nsh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Function AddToPath
StrLen $2 $1
IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done
CheckPathLength_ShowPathWarning:
Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! Your PATH environment is already to long; the installer unable to add ArangoDB to it."
Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! Your PATH environment is already to long; the installer is unable to add ArangoDB to it."
Goto AddToPath_done
CheckPathLength_Done:
Push "$1;"
Expand Down
2 changes: 1 addition & 1 deletion Installation/Windows/client/Templates/NSIS.template.in
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ Function AddToPath
StrLen $2 $1
IntCmp $2 0 CheckPathLength_ShowPathWarning CheckPathLength_Done CheckPathLength_Done
CheckPathLength_ShowPathWarning:
Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! Your PATH environment is already to long; the installer unable to add ArangoDB to it."
Messagebox MB_OK|MB_ICONEXCLAMATION "Warning! Your PATH environment is already to long; the installer is unable to add ArangoDB to it."
Goto AddToPath_done
CheckPathLength_Done:
Push "$1;"
Expand Down
0