diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-03-25 07:22:38 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-03-25 07:22:38 +0000 |
| commit | 0258895faa9a18c0b620ae0a63ee3768ba62747a (patch) | |
| tree | 63234df39675f1592321a4977265f5a1f9dc5e40 /apps/plugins | |
| parent | afe6ee4300594670795d0e7b91ca5a60160e664f (diff) | |
| download | rockbox-0258895faa9a18c0b620ae0a63ee3768ba62747a.zip rockbox-0258895faa9a18c0b620ae0a63ee3768ba62747a.tar.gz rockbox-0258895faa9a18c0b620ae0a63ee3768ba62747a.tar.bz2 rockbox-0258895faa9a18c0b620ae0a63ee3768ba62747a.tar.xz | |
Fix error in Ohm's law formula as provided in FS#12023. Thanks to Leif Andersen.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29644 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/resistor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/resistor.c b/apps/plugins/resistor.c index 1967335..87f6cfc 100644 --- a/apps/plugins/resistor.c +++ b/apps/plugins/resistor.c @@ -496,9 +496,9 @@ static void display_helpfile(void) "", "V = IR", "", "I = V/R", "", "and", - "", "R = I/V", "", "", - "Where", "V", "=", "voltage", "I", "=", "current", "(in", "amps)", - "and", "R", "=", "resistance", "(measured", "in", "Ohms)", "", "", + "", "R = V/I", "", "", + "Where", "V", "=", "voltage, ", "I", "=", "current", "(in", "amps)", + "and", "R", "=", "resistance", "(measured", "in", "Ohms).", "", "", /* 28 */ /* -- */ "The", "primary", "characteristics", "of", "a", "resistor", "are", |