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/11/18 02:58:01 UTC

svn commit: r1714918 - /olingo/site/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.mdtext

Author: chrish
Date: Wed Nov 18 01:58:01 2015
New Revision: 1714918

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

Modified:
    olingo/site/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.mdtext

Modified: olingo/site/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.mdtext
URL: http://svn.apache.org/viewvc/olingo/site/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.mdtext?rev=1714918&r1=1714917&r2=1714918&view=diff
==============================================================================
--- olingo/site/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.mdtext (original)
+++ olingo/site/trunk/content/doc/odata4/tutorials/deep_insert/tutorial_deep_insert.mdtext Wed Nov 18 01:58:01 2015
@@ -112,7 +112,7 @@ The implementation should look like the
         final Entity newEntity = new Entity();
         newEntity.setType(entity.getType());
 
-        // Create the new key of the entity
+        // Create the new key for the entity
         int newId = 1;
         while (entityIdExists(newId, entityList)) {
             newId++;