Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2a2d3a552112
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eff789b561de
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 12, 2013

  1. fixed small typo

    falti committed Dec 12, 2013
    Copy the full SHA
    ce87a88 View commit details
  2. Merge pull request #454 from falti/patch-1

    fixed small typo
    elia committed Dec 12, 2013
    Copy the full SHA
    eff789b View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 example/app/user.rb
4 changes: 2 additions & 2 deletions example/app/user.rb
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ def initialize(name)
end

def authenticated?
if admin? or special_persmission?
if admin? or special_permission?
true
else
raise "not authenticated"
@@ -15,7 +15,7 @@ def admin?
@name == 'Bob'
end

def special_persmission?
def special_permission?
false
end
end