2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 22:15:23 +00:00

[4095] spelling & co

This commit is contained in:
Francis Dupont
2015-11-11 16:11:15 +01:00
parent 53754baaea
commit bb4d313b15

View File

@@ -30,7 +30,7 @@
/// logical expression used to identify members of the class, and options /// logical expression used to identify members of the class, and options
/// that may be attributed to class members. /// that may be attributed to class members.
/// ///
/// In addition it defines a continer class, ClientClassDictionary, which /// In addition it defines a container class, ClientClassDictionary, which
/// is houses class definitions keyed by class name. /// is houses class definitions keyed by class name.
/// ///
namespace isc { namespace isc {
@@ -108,13 +108,13 @@ class ClientClassDef {
/// @brief a pointer to an ClientClassDef /// @brief a pointer to an ClientClassDef
typedef boost::shared_ptr<ClientClassDef> ClientClassDefPtr; typedef boost::shared_ptr<ClientClassDef> ClientClassDefPtr;
/// @brief Defines a map of ClientClassDefes, keyed by the class name. /// @brief Defines a map of ClientClassDef's, keyed by the class name.
typedef std::map<std::string,ClientClassDefPtr> ClientClassDefMap; typedef std::map<std::string,ClientClassDefPtr> ClientClassDefMap;
/// @brief Defines a pointer to a ClientClassDictionary /// @brief Defines a pointer to a ClientClassDictionary
typedef boost::shared_ptr<ClientClassDefMap> ClientClassDefMapPtr; typedef boost::shared_ptr<ClientClassDefMap> ClientClassDefMapPtr;
/// @brief Maintains a list of ClientClassDefes /// @brief Maintains a list of ClientClassDef's
class ClientClassDictionary { class ClientClassDictionary {
public: public: