fix typo "constractible"->"constructable"

Peter Tissen
2016-08-29 09:03:06 +02:00
parent fa5585f6ae
commit c01ecd74a8
+1 -1
@@ -223,7 +223,7 @@ class my_class {
public:
my_class() {} // When you want to convert from msgpack::object to my_class
// using msgpack::object::as fucntion template,
// my_class should be default constractible.
// my_class should be default constructible.
my_class(std::string const& name, int age):name_(name), age_(age) {}
// my_class should provide getters for the data members you want to pack.