1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

Correct formating for classes names in README

This commit is contained in:
Julien Kirch 2009-12-20 15:22:54 +01:00
parent 03431c4d03
commit 2ed4448720

View file

@ -37,7 +37,7 @@ If you are sending params that do not contain a File object but the payload need
end
end
See RestClient module docs for more details.
See `RestClient` module docs for more details.
== Usage: ActiveResource-Style
@ -47,7 +47,7 @@ See RestClient module docs for more details.
private_resource = RestClient::Resource.new 'https://example.com/private/resource', 'user', 'pass'
private_resource.put File.read('pic.jpg'), :content_type => 'image/jpg'
See RestClient::Resource module docs for details.
See `RestClient::Resource` module docs for details.
== Usage: Resource Nesting
@ -58,7 +58,7 @@ See RestClient::Resource docs for details.
== Lower-level access
For cases not covered by the general API, you can use the Request class which provide a lower-level API, see the class' rdoc for more information.
For cases not covered by the general API, you can use the `RestClient::Request` class which provide a lower-level API, see the class' rdoc for more information.
== Shell