diff --git a/doc/xml/bbref.xml b/doc/xml/bbref.xml
index 722511a..89c1986 100644
--- a/doc/xml/bbref.xml
+++ b/doc/xml/bbref.xml
@@ -364,7 +364,7 @@ associated with multi_array,
multi_array_ref, and
const_multi_array_ref that are not
dependent upon template parameters. These types find common use with
-all Boost.Multiarray components. They are defined
+all Boost.MultiArray components. They are defined
in a namespace from which they can be accessed conveniently.
With the exception of extent_gen and
extent_range, these types fulfill the roles of the
@@ -434,7 +434,7 @@ must be positive.
index start()
-This function returns the first index represented by the range
+This function returns the first index represented by the range.
@@ -562,7 +562,7 @@ For example,
a 3 by 3 by 3 multi_array is constructed as follows:
multi_array<int,3> A(extents[3][3][3]);
The same array could also be created by explicitly declaring an extent_gen
-object locally,, but the global object makes this declaration unnecessary.
+object locally, but the global object makes this declaration unnecessary.
@@ -666,7 +666,7 @@ int a[] = { 0, 4, 8, 1, 5, 9, 2, 6, 10, 3, 7, 11 };
int s[] = { 3, 1 };
Notice that the strides here are different. As a result,
-The expression given above to access values will work with this pair
+the expression given above to access values will work with this pair
of data and strides as well.