diff --git a/tutor/Gemfile b/tutor/Gemfile index 268ec354..2d437906 100644 --- a/tutor/Gemfile +++ b/tutor/Gemfile @@ -30,8 +30,6 @@ gem 'coffee-rails', '~> 4.0.0' # Use jquery as the JavaScript library gem 'jquery-rails', '~> 3.1.0' -# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks - # gem "chartkick" diff --git a/tutor/app/controllers/topics_controller.rb b/tutor/app/controllers/topics_controller.rb index bfa28e20..3e4199bc 100644 --- a/tutor/app/controllers/topics_controller.rb +++ b/tutor/app/controllers/topics_controller.rb @@ -6,7 +6,7 @@ class TopicsController < ApplicationController # This Action should be put in the future in the # Topic controller # Parameters: - # id: The id of the topic + # id: The id of the topic # Returns: The view of the requested topic # Author: Mussab ElDash def show @@ -23,12 +23,11 @@ def show end # [Specify Topics - Story 1.2] - # Description: This action takes the passed course id and assings - # the respective course to an instance variable. + # This action takes the passed course id and assings + # the respective course to an instance variable. # Parameters: # params[:course_id]: The current course id - # Returns: - # none + # Returns: none # Author: Ahmed Akram def new @course = Course.find(params[:course_id]) @@ -61,7 +60,7 @@ def destroy # Parameters: # params[:id]: The current course id # Returns: - # @topics: A list of all topics belonging to the course + # @topics: A list of all topics belonging to the course # Author: Ahmed Akram def index @course = Course.find(params[:course_id])