diff --git a/lib/api/deployments.rb b/lib/api/deployments.rb
index c5feb49b22fae593e890ec157d4f8b35f0b6aab8..2f1ad12c38cb80956773d29cd2d367aa3dba4897 100644
--- a/lib/api/deployments.rb
+++ b/lib/api/deployments.rb
@@ -1,5 +1,5 @@
 module API
-  # Deployments RESTfull API endpoints
+  # Deployments RESTful API endpoints
   class Deployments < Grape::API
     include PaginationParams
 
diff --git a/lib/api/v3/deployments.rb b/lib/api/v3/deployments.rb
index 545485fac0ad436ecd4dbb33a880d33a1629d9c7..95114ad1fe1f254e96ad4a84ada05a1cc049bbe0 100644
--- a/lib/api/v3/deployments.rb
+++ b/lib/api/v3/deployments.rb
@@ -1,40 +1,42 @@
 module API
-  # Deployments RESTfull API endpoints
-  class Deployments < Grape::API
-    include PaginationParams
+  module V3
+    # Deployments RESTful API endpoints
+    class Deployments < Grape::API
+      include PaginationParams
 
-    before { authenticate! }
+      before { authenticate! }
 
-    params do
-      requires :id, type: String, desc: 'The project ID'
-    end
-    resource :projects do
-      desc 'Get all deployments of the project' do
-        detail 'This feature was introduced in GitLab 8.11.'
-        success ::API::V3::Deployments
-      end
       params do
-        use :pagination
+        requires :id, type: String, desc: 'The project ID'
       end
-      get ':id/deployments' do
-        authorize! :read_deployment, user_project
+      resource :projects do
+        desc 'Get all deployments of the project' do
+          detail 'This feature was introduced in GitLab 8.11.'
+          success ::API::V3::Deployments
+        end
+        params do
+          use :pagination
+        end
+        get ':id/deployments' do
+          authorize! :read_deployment, user_project
 
-        present paginate(user_project.deployments), with: ::API::V3::Deployments
-      end
+          present paginate(user_project.deployments), with: ::API::V3::Deployments
+        end
 
-      desc 'Gets a specific deployment' do
-        detail 'This feature was introduced in GitLab 8.11.'
-        success ::API::V3::Deployments
-      end
-      params do
-        requires :deployment_id, type: Integer,  desc: 'The deployment ID'
-      end
-      get ':id/deployments/:deployment_id' do
-        authorize! :read_deployment, user_project
+        desc 'Gets a specific deployment' do
+          detail 'This feature was introduced in GitLab 8.11.'
+          success ::API::V3::Deployments
+        end
+        params do
+          requires :deployment_id, type: Integer,  desc: 'The deployment ID'
+        end
+        get ':id/deployments/:deployment_id' do
+          authorize! :read_deployment, user_project
 
-        deployment = user_project.deployments.find(params[:deployment_id])
+          deployment = user_project.deployments.find(params[:deployment_id])
 
-        present deployment, with: ::API::V3::Deployments
+          present deployment, with: ::API::V3::Deployments
+        end
       end
     end
   end