From 7ce04a70f4b76ea6349200f8e7d7c5c33da250c8 Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sun, 30 May 2021 07:23:16 -0500 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 391747a..e0315b9 100644 --- a/docs/Reference.md +++ b/docs/Reference.md @@ -223,10 +223,10 @@ If REQUIRED is defined in the main sketch prior to including the HomeSpan librar #### Deprecated functions (available for backwards compatibility with older sketches): -[*SpanRange(int min, int max, int step)*](https://github.com/HomeSpan/HomeSpan/blob/release-1.2.0/docs/Reference.md#spanrangeint-min-int-max-int-step) +*SpanRange(int min, int max, int step)* * this legacy function is limited to integer-based parameters and has been re-coded to simply call the more generic `setRange(min, max, step)` method - * last supported version: v1.2.0 + * last supported version: [v1.2.0](https://github.com/HomeSpan/HomeSpan/blob/release-1.2.0/docs/Reference.md#spanrangeint-min-int-max-int-step) * **please use** `setRange(min, max, step)` **for all new sketches** ---