From 62b6b8e9eb71651411876cf08ef213cf1e6c7e78 Mon Sep 17 00:00:00 2001 From: Ron Hale-Evans Date: Tue, 14 Jun 2016 12:12:26 -0700 Subject: [PATCH] Second pass. Clarify API's functionality. --- docs/reference/led/brightness.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/reference/led/brightness.md b/docs/reference/led/brightness.md index f6e2e4e1..c4f175c8 100644 --- a/docs/reference/led/brightness.md +++ b/docs/reference/led/brightness.md @@ -1,6 +1,6 @@ # Brightness -Find how bright the [LED screen](/device/screen) is. +Find how bright the [LED screen](/device/screen) is _when it is turned on_. ```sig led.brightness(); @@ -8,11 +8,11 @@ led.brightness(); ### Returns -* a [Number](/reference/types/number) that means how bright the screen is, from `0` (darkest) to `255` (brightest). For example, the number `127` means the screen is halfway bright. +* a [number](/reference/types/number) that means how bright the screen is when it is turned on, from `0` (darkest) to `255` (brightest). For example, the number `127` means the screen is halfway bright when it is turned on. ### Example: highest brightness -This program makes the screen completely bright if it is not that way already: +This program makes the screen completely bright when it is turned on (if it is not that way already): ```blocks if (led.brightness() < 255) {