aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/README.rdoc
diff options
context:
space:
mode:
authorRashmi Yadav <rays.rashmi@gmail.com>2011-08-04 12:33:56 +0530
committerXavier Noria <fxn@hashref.com>2011-08-04 16:41:31 -0700
commit681d919e48c631c499d6a2536310b97cfbd6098b (patch)
tree29d569929a840f928f4ab633790fc639da6888e0 /activeresource/README.rdoc
parent5f2c790cb7557e94f1d94b30299f44abe4c34dd1 (diff)
downloadrails-681d919e48c631c499d6a2536310b97cfbd6098b.tar.gz
rails-681d919e48c631c499d6a2536310b97cfbd6098b.tar.bz2
rails-681d919e48c631c499d6a2536310b97cfbd6098b.zip
The trailing '/' isn't being picked up by Github anyway, and the link works as is.
Diffstat (limited to 'activeresource/README.rdoc')
-rw-r--r--activeresource/README.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/README.rdoc b/activeresource/README.rdoc
index b7cf0292f0..6f45fe3598 100644
--- a/activeresource/README.rdoc
+++ b/activeresource/README.rdoc
@@ -36,7 +36,7 @@ Putting Active Resource to use is very similar to Active Record. It's as simple
that inherits from ActiveResource::Base and providing a <tt>site</tt> class variable to it:
class Person < ActiveResource::Base
- self.site = "http://api.people.com:3000/"
+ self.site = "http://api.people.com:3000"
end
Now the Person class is REST enabled and can invoke REST services very similarly to how Active Record invokes