diff --git a/docs/src/docbkx/preface.xml b/docs/src/docbkx/preface.xml
index 0cb503b5..f74ebbb5 100644
--- a/docs/src/docbkx/preface.xml
+++ b/docs/src/docbkx/preface.xml
@@ -6,7 +6,7 @@
Spring GemFire Integration focuses on integrating Spring Framework's powerful, non-invasive programming model
and concepts with Gemstone's GemFire Enterprise Fabric, providing easier configuration, use and high-level abstractions.
- This document assumes the reader is already has a basic familiarity with the Spring Framework and GemFire concepts
+ This document assumes the reader already has a basic familiarity with the Spring Framework and GemFire concepts
and APIs.
diff --git a/docs/src/docbkx/reference/bootstrap.xml b/docs/src/docbkx/reference/bootstrap.xml
index e8a8c1f6..8ed11e2b 100644
--- a/docs/src/docbkx/reference/bootstrap.xml
+++ b/docs/src/docbkx/reference/bootstrap.xml
@@ -166,7 +166,7 @@
Region
For scenarios where a CacheServer is used and
- clients need to be configured, SGI offers a
+ clients need to be configured, SGF offers a
dedicated configuration class named:
ClientRegionFactoryBean. This allows client
interests to be registered in both key and regex
@@ -190,7 +190,7 @@
Advanced configuration through a Region's attributes
Users that need fine control over a region, can configure it in Spring by using the attributes property. To ease declarative configuration in Spring,
- SGI provides two FactoryBeans for creating RegionAttributes and PartitionAttributes,
+ SGF provides two FactoryBeans for creating RegionAttributes and PartitionAttributes,
namely RegionAttributesFactory and PartitionAttributesFactory. See below an example of configuring a partitioned region through Spring
XML:
diff --git a/docs/src/docbkx/reference/data.xml b/docs/src/docbkx/reference/data.xml
index f8a9dfdf..0b4db21d 100644
--- a/docs/src/docbkx/reference/data.xml
+++ b/docs/src/docbkx/reference/data.xml
@@ -79,7 +79,7 @@
transparently across multiple APIs that can be configured either
programmatically or declaratively (the most popular choice).
- For Gemfire, SGI provides a dedicated, per-cache, transaction
+ For Gemfire, SGF provides a dedicated, per-cache, transaction
manager that once declared, allows actions on the
Regions to be grouped and executed
atomically through Spring:
@@ -151,7 +151,7 @@
</cache-loader>
To simplify the task of parsing, converting the parameters and
- initializing the object, SGI offers a base class
+ initializing the object, SGF offers a base class
(WiringDeclarableSupport) that allows GemFire user
objects to be wired through a template bean
definition or, in case that is missing perform autowiring through the
diff --git a/docs/src/docbkx/reference/introduction.xml b/docs/src/docbkx/reference/introduction.xml
index 3cd56873..212c464f 100644
--- a/docs/src/docbkx/reference/introduction.xml
+++ b/docs/src/docbkx/reference/introduction.xml
@@ -6,16 +6,16 @@
describes the configuration support provided for
bootstrapping, initializing and accessing a GemFire cache or region.
-
- describes the enhancements for GemFire
- (de)serialization process and management of associated objects.
-
explains the integration between GemFire API and
the various "data" features available in Spring, such as transaction management
and exception translation.
+ describes the enhancements for GemFire
+ (de)serialization process and management of associated objects.
+
+
describes the samples provided with the distribution
for showcasing the various features available in Spring GemFire.
diff --git a/docs/src/docbkx/reference/serialization.xml b/docs/src/docbkx/reference/serialization.xml
index 25f34edb..54a25689 100644
--- a/docs/src/docbkx/reference/serialization.xml
+++ b/docs/src/docbkx/reference/serialization.xml
@@ -13,7 +13,7 @@
url="http://community.gemstone.com/display/gemfire/Serialization+in+Java">Java,
.NET
- and C++). This chapter discusses the various ways in which SGI simplifies
+ and C++). This chapter discusses the various ways in which SGF simplifies
and improves GemFire custom serialization in Java.
@@ -23,7 +23,7 @@
Transient data is often dependent on the node or environment where it
lives at a certain point in time, for example a DataSource. Serializing
such information is useless (and potentially even dangerous) since it is
- local to a certain VM/machine. For such cases, SGI offers a special Instantiator
that performs wiring for each new instance created by GemFire during
deserialization.
@@ -65,7 +65,7 @@
be created on each machine as data flows in. Out of the box, GemFire uses
reflection to create new types but for some scenarios, this might prove to
be expensive. As always, it is good to perform profiling to quantify
- whether this is the case or not. For such cases, SGI allows the automatic
+ whether this is the case or not. For such cases, SGF allows the automatic
generation of Instatiator classes which instantiate
a new type (using the default constructor) without the use of
reflection: