@@ -791,14 +791,14 @@ creating in the *app_main.cpp* of the example. Examples:
791791 door_lock::config_t door_lock_config;
792792 endpoint_t *endpoint = door_lock::create(node, &door_lock_config, ENDPOINT_FLAG_NONE);
793793
794- - window_covering_device :
794+ - window_covering :
795795
796796 ::
797797
798- window_covering_device ::config_t window_covering_device_config (static_cast<uint8_t>(chip::app::Clusters::WindowCovering::EndProductType::kTiltOnlyInteriorBlind));
799- endpoint_t *endpoint = window_covering_device ::create(node, &window_covering_config, ENDPOINT_FLAG_NONE);
798+ window_covering ::config_t window_covering_config (static_cast<uint8_t>(chip::app::Clusters::WindowCovering::EndProductType::kTiltOnlyInteriorBlind));
799+ endpoint_t *endpoint = endpoint::window_covering ::create(node, &window_covering_config, ENDPOINT_FLAG_NONE);
800800
801- The ``window_covering_device `` ``config_t `` structure includes a constructor that allows specifying
801+ The ``window_covering `` ``config_t `` structure includes a constructor that allows specifying
802802 an end product type different than the default one, which is "Roller shade".
803803 Once a ``config_t `` instance has been instantiated, its end product type cannot be modified.
804804
@@ -915,12 +915,12 @@ For example: Thermostat cluster has O.a+ conformance for Heating and Cooling fea
915915
916916Optional features which are applicable to a cluster can also be added.
917917
918- - feature: taglist : Descriptor cluster:
918+ - feature: tag_list : Descriptor cluster:
919919
920920 ::
921921
922922 cluster_t* cluster = cluster::get(endpoint, Descriptor::Id);
923- descriptor::feature::taglist ::add(cluster);
923+ descriptor::feature::tag_list ::add(cluster);
924924
9259252.5.3 Adding custom data model fields
926926~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0 commit comments