@@ -46,7 +46,7 @@ Defined in <boost/openmethod/policies/basic_policy.hpp>. Also available via
4646### Description
4747
4848`basic_policy` implements a policy, which consists of a a collection of methods,
49- classes, dispatch data, and facets , which specify how to obtain a pointer to a
49+ classes, dispatch data, and policys , which specify how to obtain a pointer to a
5050v-table from an object, how to report errors, whether to perform runtime sanity
5151checks, etc.
5252
@@ -75,7 +75,7 @@ Creates a new policy from an existing one. _NewPolicy_ does not share static
7575variables with the original _Policy_. The new policy does not retain any
7676knowledge of the classes and methods registered in the original.
7777
78- `fork` forks the facets in the policy as well: any facet instantiated from a
78+ `fork` forks the policys in the policy as well: any policy instantiated from a
7979class template is assumed to take a policy as its first template argument. The
8080template is re-instantiated with the new policy as the first arguments, while
8181the other arguments remain the same.
@@ -87,9 +87,9 @@ template<class... Facets>
8787using with;
8888```
8989
90- Requires:: _Facets_ is a list of classes that derive from `facet `.
90+ Requires:: _Facets_ is a list of classes that derive from `policy `.
9191
92- Returns:: A new policy containing _Facets_, and the facets from the original
92+ Returns:: A new policy containing _Facets_, and the policys from the original
9393that do not have the same category as _Facets_.
9494
9595Examples::
@@ -111,9 +111,9 @@ template<class... Facets>
111111using without;
112112```
113113
114- Requires:: _Facets_ is a list of facet categories.
114+ Requires:: _Facets_ is a list of policy categories.
115115
116- Returns:: A new policy containing the facets from the original that do not have
116+ Returns:: A new policy containing the policys from the original that do not have
117117the same category as _Facets_.
118118
119119Examples::
@@ -130,7 +130,7 @@ Examples::
130130struct release;
131131```
132132
133- A policy that contains facets `std_rtti`, `fast_perfect_hash`, `vptr_vector` and
133+ A policy that contains policys `std_rtti`, `fast_perfect_hash`, `vptr_vector` and
134134`default_error_handler`.
135135
136136#### debug
@@ -139,7 +139,7 @@ A policy that contains facets `std_rtti`, `fast_perfect_hash`, `vptr_vector` and
139139struct debug;
140140```
141141
142- The `release` policy with additional facet implementations `runtime_checks`,
142+ The `release` policy with additional policy implementations `runtime_checks`,
143143`basic_error_output` and basic_trace_output.
144144
145145NOTE: `debug` extends `release` but it does not a fork it. Both policies use the
0 commit comments