diff options
author | Mark Fletcher <mark@gitlab.com> | 2018-05-03 12:05:34 +0100 |
---|---|---|
committer | Mark Fletcher <mark@gitlab.com> | 2018-05-03 15:06:25 +0100 |
commit | 7614757063d2dab530ca42504dd42b26b09d3c2b (patch) | |
tree | 1b3ef51116e9e0ec4d8661b9882c7f931150b619 | |
parent | bba847fedb8696d8f8224568b8daafb6e25444c8 (diff) | |
download | gitlab-ce-7614757063d2dab530ca42504dd42b26b09d3c2b.tar.gz |
Fix a typo in the Registry index
-rw-r--r-- | app/views/projects/registry/repositories/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/registry/repositories/index.html.haml b/app/views/projects/registry/repositories/index.html.haml index 76f57320f99..2a683d5be0f 100644 --- a/app/views/projects/registry/repositories/index.html.haml +++ b/app/views/projects/registry/repositories/index.html.haml @@ -30,7 +30,7 @@ %br %p - deploy_token = link_to(_('deploy token'), help_page_path('user/project/deploy_tokens/index', anchor: 'read-container-registry-images'), target: '_blank') - = s_('ContainerRegistry|You can also %{deploy_token} for read-only access to the registry images.').html_safe % { deploy_token: deploy_token } + = s_('ContainerRegistry|You can also use a %{deploy_token} for read-only access to the registry images.').html_safe % { deploy_token: deploy_token } %br %p = s_('ContainerRegistry|Once you log in, you’re free to create and upload a container image using the common %{build} and %{push} commands').html_safe % { build: "<code>build</code>".html_safe, push: "<code>push</code>".html_safe } |