diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2015-01-02 10:36:49 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2015-01-02 10:36:49 +0100 |
commit | 3fbae669f8a4f9ec7aba629aa4c83f8d3b347df1 (patch) | |
tree | 0d028437a4e44e3b55cd940be692de39aea10f07 | |
parent | b205a1860f06237d7eaa57076d9cf0d5845c77aa (diff) | |
parent | 0078fe6c101a4c99d82f4c2948b720f873e13f44 (diff) | |
download | gitlab-shell-3fbae669f8a4f9ec7aba629aa4c83f8d3b347df1.tar.gz |
Merge pull request #206 from nerdoc/patch-1
typo in message: "accesible" -> "accessible"
-rw-r--r-- | lib/gitlab_net.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_net.rb b/lib/gitlab_net.rb index b003e76..e1b7dfc 100644 --- a/lib/gitlab_net.rb +++ b/lib/gitlab_net.rb @@ -30,7 +30,7 @@ class GitlabNet if resp.code == '200' GitAccessStatus.create_from_json(resp.body) else - GitAccessStatus.new(false, "API is not accesible") + GitAccessStatus.new(false, 'API is not accessible') end end |