summaryrefslogtreecommitdiff
path: root/lib/api/variables.rb
diff options
context:
space:
mode:
authorTomasz Maczukin <tomasz@maczukin.pl>2016-01-13 18:47:39 +0100
committerTomasz Maczukin <tomasz@maczukin.pl>2016-01-13 18:47:39 +0100
commit9e701ccd48ed442124509aeb68fe6788579efdde (patch)
tree97db5e353e3b0fc4da68a0d30a6e6cafc450b83f /lib/api/variables.rb
parentdf548285804fdc40ac7c4f36601e87a534792a4a (diff)
downloadgitlab-ce-9e701ccd48ed442124509aeb68fe6788579efdde.tar.gz
Fix some typos
Diffstat (limited to 'lib/api/variables.rb')
-rw-r--r--lib/api/variables.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/variables.rb b/lib/api/variables.rb
index 0c3fb5c8a77..d9a055f6c92 100644
--- a/lib/api/variables.rb
+++ b/lib/api/variables.rb
@@ -18,7 +18,7 @@ module API
present paginate(variables), with: Entities::Variable
end
- # Get specifica variable of a project
+ # Get specific variable of a project
#
# Parameters:
# id (required) - The ID of a project
@@ -80,7 +80,7 @@ module API
# Parameters:
# id (required) - The ID of a project
# key (required) - The ID of a variable
- # Exanoke Reqyest:
+ # Example Request:
# DELETE /projects/:id/variables/:key
delete ':id/variables/:key' do
variable = user_project.variables.find_by(key: params[:key].to_s)