You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ud...@apache.org on 2017/06/09 20:13:38 UTC

[04/27] geode git commit: GEODE-2555: Region Management docs page refers to the wrong field (id= should be refid=)

GEODE-2555: Region Management docs page refers to the wrong field (id= should be refid=)


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

Branch: refs/heads/feature/GEODE-3023
Commit: c756d31b0148565e015359713bcd07d14bfa2da0
Parents: 8f5ca0a
Author: Dave Barnes <db...@pivotal.io>
Authored: Tue Jun 6 15:47:11 2017 -0700
Committer: Udo Kohlmeyer <uk...@pivotal.io>
Committed: Fri Jun 9 13:12:03 2017 -0700

----------------------------------------------------------------------
 .../data_regions/managing_data_regions.html.md.erb             | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/c756d31b/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
----------------------------------------------------------------------
diff --git a/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb b/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
index c93f13a..34b4c77 100644
--- a/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
+++ b/geode-docs/basic_config/data_regions/managing_data_regions.html.md.erb
@@ -76,7 +76,7 @@ Region creation is subject to attribute consistency checks, both internal to the
 The `region` declaration of a replicated region named Portfolios:
 
 ``` pre
-<region name="Portfolios" id="REPLICATE"/>
+<region name="Portfolios" refid="REPLICATE"/>
 ```
 
 The `region` declaration of a partitioned region named myRegion:
@@ -245,8 +245,8 @@ You can create subregions using one of the following methods:
             lock-timeout="60"
             search-timeout="300">
         <!-- Create a region named Portfolios -->
-          <region name="Portfolios" id="REPLICATE">
-              <region name="Private" id="REPLICATE">
+          <region name="Portfolios" refid="REPLICATE">
+              <region name="Private" refid="REPLICATE">
               ...
               </region>
           </region>