diff --git a/in_place_factories.html b/in_place_factories.html index 9b71559..b36387d 100644 --- a/in_place_factories.html +++ b/in_place_factories.html @@ -3,9 +3,8 @@
- - -A solution to this problem is to support direct construction of the contained
object right in the container's storage.
-In this shceme, the user supplies the arguments for the X constructor
+In this scheme, the user supplies the arguments for the X constructor
directly to the container:
struct C { @@ -138,7 +137,7 @@ The following simplified example shows the basic idea. A complete example follow void foo() { - C c( in_place(123,"hello" ) ; + C c( in_place(123,"hello") ) ; }