diff options
author | Keith Packard <keithp@keithp.com> | 2011-07-04 18:08:19 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-07-04 18:08:19 -0700 |
commit | b51e5466f7a125db873edd1fa9bd3881d7e98aad (patch) | |
tree | d7e03c0729bb398e0a7b8e9603751c0db0385f89 /src/ao_adc.c | |
parent | 9e5e4c1ad82d621ceb7286f72c87eeaf5976f9bf (diff) |
altos: Shrink help text
Reduce const space taken by command help text.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_adc.c')
-rw-r--r-- | src/ao_adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ao_adc.c b/src/ao_adc.c index 48568383..cbeb6a24 100644 --- a/src/ao_adc.c +++ b/src/ao_adc.c @@ -162,7 +162,7 @@ ao_adc_dump(void) __reentrant } __code struct ao_cmds ao_adc_cmds[] = { - { ao_adc_dump, "a\0Display current ADC values" }, + { ao_adc_dump, "a\0Current ADC" }, { 0, NULL }, }; |