You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by km...@apache.org on 2017/03/22 22:31:18 UTC

[2/3] geode-native git commit: GEODE-2513 Fix typo in C++ API docs section for PR#69

GEODE-2513 Fix typo in C++ API docs section for PR#69


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

Branch: refs/heads/develop
Commit: 5cb25801d96f3ddf3842fc298c7d4752d67d4e6c
Parents: dfaf5db
Author: Karen Miller <km...@pivotal.io>
Authored: Wed Mar 22 14:46:19 2017 -0700
Committer: Karen Miller <km...@pivotal.io>
Committed: Wed Mar 22 14:46:19 2017 -0700

----------------------------------------------------------------------
 docs/geode-native-docs/cpp-caching-api/accessing-entry.html.md.erb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode-native/blob/5cb25801/docs/geode-native-docs/cpp-caching-api/accessing-entry.html.md.erb
----------------------------------------------------------------------
diff --git a/docs/geode-native-docs/cpp-caching-api/accessing-entry.html.md.erb b/docs/geode-native-docs/cpp-caching-api/accessing-entry.html.md.erb
index 66f30c6..3360e18 100644
--- a/docs/geode-native-docs/cpp-caching-api/accessing-entry.html.md.erb
+++ b/docs/geode-native-docs/cpp-caching-api/accessing-entry.html.md.erb
@@ -35,7 +35,7 @@ for ( int32_t i=0; i< 100; i++) {
 
 ## <a id="concept_2B85EC4AB9FA446998147A1539D818CC__section_80F9A9E8F8514A9FBA19106C2473B370" class="no-quick-link"></a>Bulk Get Operations Using getAll
 
-You can use the `Region::getAll` methond to get values for an array of keys from the local cache or server. If the value for a key is not present locally, then it is requested from the server.
+You can use the `Region::getAll` method to get values for an array of keys from the local cache or server. If the value for a key is not present locally, then it is requested from the server.
 
 **Note:**
 The value returned is not copied, so multi-threaded applications should not modify the value directly, but should instead use the update methods.