From c64c31f4cff22ee8d2a53f614965557d08592e6c Mon Sep 17 00:00:00 2001 From: HomeSpan Date: Sun, 7 Mar 2021 17:41:41 -0600 Subject: [PATCH] Update Reference.md --- docs/Reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Reference.md b/docs/Reference.md index 8dcf86c..f45f84d 100644 --- a/docs/Reference.md +++ b/docs/Reference.md @@ -226,7 +226,7 @@ Creating an instance of this **class** overrides the default HAP range for a Cha * instantiating a Range without first instantiating a Characteristic throws an error during initialization * example: `new Characteristic::Brightness(50); new SpanRange(10,100,5);` * this is a legacy function that is limited to integer-based parameters, and has been re-coded to simply call the more generic `setRange(min, max, step)` method -* **please use setRange(min, max, step) for all new sketches** +* **please use** `setRange(min, max, step)` **for all new sketches** ---