From 9df6f3c50052c696844e758276f46ca2872a724b Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sat, 25 Feb 2023 16:15:22 -0600 Subject: [PATCH] Update Reference.md --- docs/Reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Reference.md b/docs/Reference.md index 52de4b2..dc3c2b3 100644 --- a/docs/Reference.md +++ b/docs/Reference.md @@ -268,8 +268,8 @@ The following methods are supported: * note though this functionality is defined by Apple in HAP-R2, it seems to have been deprecated and no longer serves any purpose or has any affect on the Home App * `SpanService *addLink(SpanService *svc)` - * adds *svc* as a Linked Service. Returns a pointer to the calling Service itself so that the method can be chained during instantiation. - * note that Linked Services are only applicable for select HAP Services. See Apple's [HAP-R2](https://developer.apple.com/support/homekit-accessory-protocol/) documentation for full details. + * adds *svc* as a Linked Service. Returns a pointer to the calling Service itself so that the method can be chained during instantiation + * note that Linked Services are only applicable for select HAP Services. See Apple's HAP-R2 documentation for full details * example: `(new Service::Faucet)->addLink(new Service::Valve)->addLink(new Service::Valve);` (links two Valves to a Faucet) * `vector getLinks()`