From 132cd4fab1023d3666cc47c1cb6c1e84e19fd5e0 Mon Sep 17 00:00:00 2001 From: theiding Date: Fri, 27 Mar 2020 21:01:03 -0700 Subject: [PATCH] Minor language tweak --- developers/bindings/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developers/bindings/index.md b/developers/bindings/index.md index f4f115b6b5..c0ebe7cd70 100644 --- a/developers/bindings/index.md +++ b/developers/bindings/index.md @@ -662,7 +662,7 @@ The following table gives an overview about the main parts of a `DiscoveryResult | `label` | The human readable representation of the discovery result. Do not put IP/MAC addresses or similar into the label but use the special `representationProperty` instead. | | `representationProperty` | The name of one of the properties which discriminates the discovery result best against other results of the same type. Typically this is a serial number, IP or MAC address. The representationProperty often matches a configuration parameter and is also explicitly given in the thing-type definition. | -To simplify the implementation of own discovery services, an abstract base class `AbstractDiscoveryService` implements the `DiscoveryService`, that must only be extended. +To simplify the implementation of custom discovery services, an abstract base class `AbstractDiscoveryService` implements the `DiscoveryService` and just needs to be extended. Subclasses of `AbstractDiscoveryService` do not need to handle the `DiscoveryListeners` themselves, they can use the methods `thingDiscovered` and `thingRemoved` to notify the registered listeners. Most of the descriptions in this chapter refer to the `AbstractDiscoveryService`.