diff --git a/Odata-docs/concepts/url-components.md b/Odata-docs/concepts/url-components.md index 0da12421..4b43d9e6 100644 --- a/Odata-docs/concepts/url-components.md +++ b/Odata-docs/concepts/url-components.md @@ -25,7 +25,7 @@ http://host:port/path/SampleService.svc/Categories(1)/Products?$top=2&$orderby=N The service root of a url is the base url of the service. When a _GET_ request is made to this url it will return a service document that defines all the resources available via that service. 2. ***Resource path*** - A resource by REST definition is an object which is accessible over the HTTP by using the standard GET,POST,PUT,PATCH and DELETE methods. It could be a single object or a collection of similar objects, presented in an ordered or unordered. + A resource by REST definition is an object which is accessible over HTTP by using the standard GET,POST,PUT,PATCH and DELETE methods. It could be a single object or a collection of similar objects, presented in an ordered or unordered fashion. An object is constructed of a certain type, has relationships with other objects and has methods that operate on it. Some examples for resources might be: customers, a single customer, orders related to a single customer, and so forth. Examples of addressable aspects of these resources as exposed by the data model might be: collections of entities, a single entity, properties, links, operations, and so on.