You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by db...@apache.org on 2017/04/26 21:40:33 UTC

geode-native git commit: GEODE-2826: Client docs - Delta Propagation API, correct .NET namespace notation This closes #94

Repository: geode-native
Updated Branches:
  refs/heads/develop 297c8f866 -> 2e2f0f8ae


GEODE-2826: Client docs - Delta Propagation API, correct .NET namespace notation
This closes #94


Project: http://git-wip-us.apache.org/repos/asf/geode-native/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode-native/commit/2e2f0f8a
Tree: http://git-wip-us.apache.org/repos/asf/geode-native/tree/2e2f0f8a
Diff: http://git-wip-us.apache.org/repos/asf/geode-native/diff/2e2f0f8a

Branch: refs/heads/develop
Commit: 2e2f0f8aef85e464700f521a55946d18c40988f5
Parents: 297c8f8
Author: Dave Barnes <db...@pivotal.io>
Authored: Tue Apr 25 13:37:50 2017 -0700
Committer: Dave Barnes <db...@pivotal.io>
Committed: Wed Apr 26 14:39:31 2017 -0700

----------------------------------------------------------------------
 .../delta-propagation/delta-propagation-api.html.md.erb        | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode-native/blob/2e2f0f8a/docs/geode-native-docs/delta-propagation/delta-propagation-api.html.md.erb
----------------------------------------------------------------------
diff --git a/docs/geode-native-docs/delta-propagation/delta-propagation-api.html.md.erb b/docs/geode-native-docs/delta-propagation/delta-propagation-api.html.md.erb
index 8bad344..be1f681 100644
--- a/docs/geode-native-docs/delta-propagation/delta-propagation-api.html.md.erb
+++ b/docs/geode-native-docs/delta-propagation/delta-propagation-api.html.md.erb
@@ -25,8 +25,8 @@ Delta propagation uses configuration properties and a simple API to send and rec
 
 Your application class must implement:
 
--   `Apache::Geode::Client::IGFDelta `
--   `Apache::Geode::Client::IGeodeSerializable `
+-   `Apache.Geode.Client.IGFDelta`
+-   `Apache.Geode.Client.IGeodeSerializable`
 
 `IGFDelta` provides the methods, `HasDelta`, `ToDelta`, and `FromDelta`, which you program to report on, send, and receive deltas for your class.
 
@@ -36,7 +36,7 @@ Additionally, for cloning, your class must implement the standard .NET `IClonabl
 
 Your application must publicly derive from:
 
--   `apache::geode::client::Delta `
+-   `apache::geode::client::Delta`
 
 `Delta` provides the methods, `hasDelta`, `toDelta`, `fromDelta`, which you program to report on, send, and receive deltas for your class.