Fixed formatting and ruby hash syntax

This commit is contained in:
Callum Barratt 2014-03-31 22:33:16 +01:00
parent 8836bc49f2
commit fbd6ad4ac6
42 changed files with 170 additions and 166 deletions

View file

@ -3,13 +3,13 @@ class VersionsController < ApplicationController
def index
@versions = @article.versions
render "articles/history"
render 'articles/history'
end
def show
@version = @article.versions.find params[:id]
@nobody = true
render "articles/version"
render 'articles/version'
end
def update