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

Help string typos #936

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions src/megacmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2337,14 +2337,14 @@ string getHelpStr(const char *command)
{
os << "Shows/Establish default permissions for files and folders created by MEGAcmd." << endl;
os << endl;
os << "Permissions are unix-like permissions, with 3 numbers: one for owner, one for group and one for others" << endl;
os << "Permissions are Unix-like permissions, with 3 numbers: one for owner, one for group and one for others" << endl;
os << "Options:" << endl;
os << " --files" << "\t" << "To show/set files default permissions." << endl;
os << " --folders" << "\t" << "To show/set folders default permissions." << endl;
os << " --s XXX" << "\t" << "To set new permissions for newly created files/folder. " << endl;
os << " " << "\t" << " Notice that for files minimum permissions is 600," << endl;
os << " " << "\t" << " for folders minimum permissions is 700." << endl;
os << " " << "\t" << " Further restrictions to owner are not allowed (to avoid missfunctioning)." << endl;
os << " " << "\t" << " Further restrictions to owner are not allowed (to avoid misfunctioning)." << endl;
os << " " << "\t" << " Notice that permissions of already existing files/folders will not change." << endl;
os << " " << "\t" << " Notice that permissions of already existing files/folders will not change." << endl;
os << endl;
Expand Down