diff options
author | Robert Ross <robert@maintainedauto.com> | 2011-11-21 17:06:00 -0800 |
---|---|---|
committer | Robert Ross <robert@maintainedauto.com> | 2011-11-21 17:06:00 -0800 |
commit | 9dc9db1c99bce6b4c478f0a587abcb7744f2ad5e (patch) | |
tree | 2fe4306221b1abe0c056019799ce0630762f61a0 /activeresource | |
parent | 5660a16d56bb738979c47bf3dea16a40c2547b16 (diff) | |
download | rails-9dc9db1c99bce6b4c478f0a587abcb7744f2ad5e.tar.gz rails-9dc9db1c99bce6b4c478f0a587abcb7744f2ad5e.tar.bz2 rails-9dc9db1c99bce6b4c478f0a587abcb7744f2ad5e.zip |
Fix missing single quote that was messing up syntax highlighting.
Diffstat (limited to 'activeresource')
-rw-r--r-- | activeresource/lib/active_resource/custom_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/lib/active_resource/custom_methods.rb b/activeresource/lib/active_resource/custom_methods.rb index c1931b2758..f7cb381711 100644 --- a/activeresource/lib/active_resource/custom_methods.rb +++ b/activeresource/lib/active_resource/custom_methods.rb @@ -23,7 +23,7 @@ module ActiveResource # self.site = "http://37s.sunrise.i:3000" # end # - # Person.new(:name => 'Ryan).post(:register) # POST /people/new/register.json + # Person.new(:name => 'Ryan').post(:register) # POST /people/new/register.json # # => { :id => 1, :name => 'Ryan' } # # Person.find(1).put(:promote, :position => 'Manager') # PUT /people/1/promote.json |