trivial documentation patch for platform.txt
authorErik Hovland <erik@hovland.org>
Sat, 17 Feb 2007 18:29:21 +0000 (19:29 +0100)
committerAdrian Bunk <bunk@stusta.de>
Sat, 17 Feb 2007 18:29:21 +0000 (19:29 +0100)
Found a couple of typos in the Documentation/driver-model/platform.txt
file. This patch fixes both of them.

Signed-off-by: Erik Hovland <erik@hovland.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Documentation/driver-model/platform.txt

index 9f0bc3bfd776b4b3f50523604a320ffe5d8eba8e..f7c9262b2dc8543aa2808931e2cb5c316efacb06 100644 (file)
@@ -66,7 +66,7 @@ runtime memory footprint:
 
 Device Enumeration
 ~~~~~~~~~~~~~~~~~~
-As a rule, platform specific (and often board-specific) setup code wil
+As a rule, platform specific (and often board-specific) setup code will
 register platform devices:
 
        int platform_device_register(struct platform_device *pdev);
@@ -106,7 +106,7 @@ It's built from two components:
     * platform_device.id ... the device instance number, or else "-1"
       to indicate there's only one.
 
-These are catenated, so name/id "serial"/0 indicates bus_id "serial.0", and
+These are concatenated, so name/id "serial"/0 indicates bus_id "serial.0", and
 "serial/3" indicates bus_id "serial.3"; both would use the platform_driver
 named "serial".  While "my_rtc"/-1 would be bus_id "my_rtc" (no instance id)
 and use the platform_driver called "my_rtc".