aboutsummaryrefslogtreecommitdiff
path: root/toys/other/i2ctools.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-03-02 11:21:25 -0800
committerRob Landley <rob@landley.net>2019-03-02 14:12:24 -0600
commitd588ba74439604cf29100aec7cd1da640a5d6fe5 (patch)
tree458245b19a5af436925a238da9d779a038dcf968 /toys/other/i2ctools.c
parentb8001d13a68b1b05bff7008fd657af0563890d3f (diff)
downloadtoybox-d588ba74439604cf29100aec7cd1da640a5d6fe5.tar.gz
Improve help consistency.
More consistent tense, capitalization, and punctuation. A few commands were missing an introductory line, so I copied those from the first comment line.
Diffstat (limited to 'toys/other/i2ctools.c')
-rw-r--r--toys/other/i2ctools.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/toys/other/i2ctools.c b/toys/other/i2ctools.c
index 15578665..c9a11466 100644
--- a/toys/other/i2ctools.c
+++ b/toys/other/i2ctools.c
@@ -24,7 +24,7 @@ config I2CDETECT
usage: i2cdetect -F BUS
usage: i2cdetect -l
- Detects i2c devices.
+ Detect i2c devices.
-a All addresses (0x00-0x7f rather than 0x03-0x77)
-F Show functionality
@@ -38,7 +38,7 @@ config I2CDUMP
help
usage: i2cdump [-fy] BUS CHIP
- Dumps i2c registers.
+ Dump i2c registers.
-f Force access to busy devices
-y Answer "yes" to confirmation prompts (for script use)
@@ -49,7 +49,7 @@ config I2CGET
help
usage: i2cget [-fy] BUS CHIP ADDR
- Reads an i2c register.
+ Read an i2c register.
-f Force access to busy devices
-y Answer "yes" to confirmation prompts (for script use)
@@ -60,7 +60,7 @@ config I2CSET
help
usage: i2cset [-fy] BUS CHIP ADDR VALUE... MODE
- Writes an i2c register. MODE is b for byte, w for 16-bit word, i for I2C block.
+ Write an i2c register. MODE is b for byte, w for 16-bit word, i for I2C block.
-f Force access to busy devices
-y Answer "yes" to confirmation prompts (for script use)