You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by ch...@apache.org on 2015/10/21 14:46:15 UTC

svn commit: r1709819 - /olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext

Author: chrish
Date: Wed Oct 21 12:46:14 2015
New Revision: 1709819

URL: http://svn.apache.org/viewvc?rev=1709819&view=rev
Log:
CMS commit to olingo by chrish

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext?rev=1709819&r1=1709818&r2=1709819&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/action/tutorial_action.mdtext Wed Oct 21 12:46:14 2015
@@ -83,7 +83,7 @@ To make this function statically callabl
                          IncludeInServiceDocument="true"/>
     </EntityContainer>
 
-To call such a Function Import the client issues a GET requests to a URL identifying the function import. The parameters are passed using the so called inline parameter syntax. In this simple case such a call could look like this:
+To call such a Function Import the client issues a GET requests to a URL identifying the function import. The parameters are passed by using the so called inline parameter syntax. In this simple case such a call could look like this:
 
     http://host/myService/StaticCalculateVAT(NetPrice=123.00,Country=’US’)
 
@@ -123,7 +123,7 @@ Afterwards do a Deploy and run: it shoul
 
 ## Implementation
 
-We will using the given data model you are familiar with. To keep things simple we implement one function import and one action import.
+We use the given data model you are familiar with. To keep things simple we implement one function import and one action import.
 
 **Function Import: CountCategories**    
 This function takes a mandatory parameter “*Amount*”. The function returns a collection of categories with the very same number of related products.