summaryrefslogtreecommitdiff
path: root/libs/bimap/doc/html/boost_bimap
diff options
context:
space:
mode:
Diffstat (limited to 'libs/bimap/doc/html/boost_bimap')
-rw-r--r--libs/bimap/doc/html/boost_bimap/bimap_and_boost.html2
-rw-r--r--libs/bimap/doc/html/boost_bimap/compiler_specifics.html6
-rw-r--r--libs/bimap/doc/html/boost_bimap/history.html4
-rw-r--r--libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html4
-rw-r--r--libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html2
-rw-r--r--libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html2
-rw-r--r--libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html8
7 files changed, 14 insertions, 14 deletions
diff --git a/libs/bimap/doc/html/boost_bimap/bimap_and_boost.html b/libs/bimap/doc/html/boost_bimap/bimap_and_boost.html
index 5b2ed1b32..1ad3e4d3a 100644
--- a/libs/bimap/doc/html/boost_bimap/bimap_and_boost.html
+++ b/libs/bimap/doc/html/boost_bimap/bimap_and_boost.html
@@ -74,7 +74,7 @@
can be used as key. There is a library in Boost that already allows the creation
of this kind of container: Boost.MultiIndex. It offers great flexibility
and lets you construct almost any container that you could dream of. The
- framework is very clean. You migh want to read this library's tutorial to
+ framework is very clean. You might want to read this library's tutorial to
learn about the power that has been achieved.
</p>
<p>
diff --git a/libs/bimap/doc/html/boost_bimap/compiler_specifics.html b/libs/bimap/doc/html/boost_bimap/compiler_specifics.html
index 22bc58daf..0e0e404ab 100644
--- a/libs/bimap/doc/html/boost_bimap/compiler_specifics.html
+++ b/libs/bimap/doc/html/boost_bimap/compiler_specifics.html
@@ -330,9 +330,9 @@
7.1</a>
</h3>
<p>
- If a .cpp file uses more than four differents bimaps the compiler will run
- out of symbols and issue an internal compiler error. The official solution
- in msdn is to split the .cpp in several files or upgrade your compiler.
+ If a .cpp file uses more than four different bimaps the compiler will run out
+ of symbols and issue an internal compiler error. The official solution in msdn
+ is to split the .cpp in several files or upgrade your compiler.
</p>
<h3>
<a name="boost_bimap.compiler_specifics.h1"></a>
diff --git a/libs/bimap/doc/html/boost_bimap/history.html b/libs/bimap/doc/html/boost_bimap/history.html
index 8809bff64..ddb270f44 100644
--- a/libs/bimap/doc/html/boost_bimap/history.html
+++ b/libs/bimap/doc/html/boost_bimap/history.html
@@ -70,7 +70,7 @@
<dd><p>
Once in Boost, the library switched to the now familiar name "Boost.MultiIndex".
Late in 2004, it formally became a member of Boost. Joaquin continued
- to enchance the library and added new features such as composite keys
+ to enhance the library and added new features such as composite keys
and random-access indices.
</p></dd>
<dt><span class="term">2006 - Multi Index Specialized Containers SoC project</span></dt>
@@ -88,7 +88,7 @@
</p></dd>
<dt><span class="term">2007 - Boost.Bimap</span></dt>
<dd><p>
- The formal review took place at the beggining of the year and Boost.Bimap
+ The formal review took place at the beginning of the year and Boost.Bimap
was accepted in Boost.
</p></dd>
</dl>
diff --git a/libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html b/libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html
index c654937d7..c9ddbb31c 100644
--- a/libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html
+++ b/libs/bimap/doc/html/boost_bimap/one_minute_tutorial.html
@@ -124,7 +124,7 @@
by step</a>
</h4>
<p>
- A convinience header is avaiable in the boost directory:
+ A convenience header is available in the boost directory:
</p>
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">bimap</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span>
</pre>
@@ -275,7 +275,7 @@
<p>
If you insert <code class="computeroutput"><span class="special">(</span><span class="number">1</span><span class="special">,</span><span class="string">"one"</span><span class="special">)</span></code> and <code class="computeroutput"><span class="special">(</span><span class="number">1</span><span class="special">,</span><span class="string">"1"</span><span class="special">)</span></code> in a <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">map</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">,</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span><span class="special">&gt;</span></code> the second insertion will have no effect.
In a <code class="computeroutput"><span class="identifier">bimap</span><span class="special">&lt;</span><span class="identifier">X</span><span class="special">,</span><span class="identifier">Y</span><span class="special">&gt;</span></code> both keys have to remain unique. The insertion
- may fail in other situtions too. Lets see an example
+ may fail in other situations too. Lets see an example
</p>
<pre class="programlisting"><span class="identifier">bm</span><span class="special">.</span><span class="identifier">clear</span><span class="special">();</span>
diff --git a/libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html b/libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html
index c79d16e18..7a3c52b33 100644
--- a/libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html
+++ b/libs/bimap/doc/html/boost_bimap/the_tutorial/bimaps_with_user_defined_names.html
@@ -85,7 +85,7 @@
</p>
<p>
In Boost.Bimap there is a better way to document the code and in the meantime
- helping you to write more mantainable and readable code. You can tag the
+ helping you to write more maintainable and readable code. You can tag the
two collections of the bimap so they can be accessed by more descriptive
names.
</p>
diff --git a/libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html b/libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html
index 4fdeeb488..3599adc60 100644
--- a/libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html
+++ b/libs/bimap/doc/html/boost_bimap/the_tutorial/complete_instantiation_scheme.html
@@ -47,7 +47,7 @@
to specify user defined names instead of the usual <code class="computeroutput"><span class="identifier">member_at</span><span class="special">::-</span><span class="identifier">Side</span><span class="special">-</span></code> tags.
</p>
<p>
- The possibles way to use the first parameter are:
+ The possible way to use the first parameter are:
</p>
<pre class="programlisting"><span class="identifier">bimap</span><span class="special">&lt;</span> <span class="identifier">Type</span><span class="special">,</span> <span class="identifier">R</span> <span class="special">&gt;</span>
</pre>
diff --git a/libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html b/libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html
index be21c3dc6..10741f946 100644
--- a/libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html
+++ b/libs/bimap/doc/html/boost_bimap/the_tutorial/controlling_collection_types.html
@@ -358,18 +358,18 @@
Populations</a>
</h6>
<p>
- We want to store countries populations. The requeriments are:
+ We want to store countries populations. The requirements are:
</p>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
- Get a list of countries in decresing order of their populations.
+ Get a list of countries in decreasing order of their populations.
</li>
<li class="listitem">
- Given a countrie, get their population.
+ Given a country, get their population.
</li>
</ol></div>
<p>
- Lets create the appropiate bimap.
+ Lets create the appropriate bimap.
</p>
<pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">bimap</span><span class="special">&lt;</span>