Fix misleading comment
`gsub(/\/\z/, '')` removes a leading slash (`/`) not a space ``` > 'https://gitlab.com/'.gsub(/\/\z/, '') => "https://gitlab.com" > 'https://gitlab.com/ '.gsub(/\/\z/, '') => "https://gitlab.com/ " ```
Showing
Please register or sign in to comment