diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-07 15:09:52 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-07 15:09:52 +0000 |
commit | e43077ab4742ba5083a01a1e5341db1a1b7a1701 (patch) | |
tree | c33a00fb176caff735243c484bbd594a3b08bb6e /doc/development/shell_commands.md | |
parent | 211a8c3361ccf4eb92f36edbdcf15c98fcdcc8b7 (diff) | |
download | gitlab-ce-e43077ab4742ba5083a01a1e5341db1a1b7a1701.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/shell_commands.md')
-rw-r--r-- | doc/development/shell_commands.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/development/shell_commands.md b/doc/development/shell_commands.md index 1f97d433223..7079f7a9914 100644 --- a/doc/development/shell_commands.md +++ b/doc/development/shell_commands.md @@ -168,7 +168,7 @@ user_input = '../other-repo.git/other-file' repo_path = 'repositories/user-repo.git' # The intention of the code below is to open a file under repo_path, but -# because the user used '..' she can 'break out' into +# because the user used '..' they can 'break out' into # 'repositories/other-repo.git' full_path = File.join(repo_path, user_input) File.open(full_path) do # Oops! |