Skip to content

Commit

Permalink
Issue #476 fixing spaces and tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi authored and Mahdi committed May 17, 2014
1 parent 6ae30bf commit 926a61f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 0 additions & 2 deletions tutor/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
11 changes: 5 additions & 6 deletions tutor/app/controllers/topics_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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])
Expand Down Expand Up @@ -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])
Expand Down

0 comments on commit 926a61f

Please sign in to comment.