Consistency: initialised->initialized

This commit is contained in:
Nathan
2018-11-06 22:03:59 -08:00
parent 169f59eb7c
commit 84e5976fed

View File

@@ -55,7 +55,7 @@ Such a **HAL implementation** can come in various flavours:
A driver implements a set of custom functionality for an internal or external component, connected to a peripheral implementing the embedded-hal traits. Typical examples for such drivers include various sensors (temperature, magnetometer, accelerometer, light), display devices (LED arrays, LCD displays) and actuators (motors, transmitters).
A driver has to be initialised with an instance of type that implements a certain `trait` of the embedded-hal which is ensured via trait bound and provides its own type instance with a custom set of methods allowing to interact with the driven device.
A driver has to be initialized with an instance of type that implements a certain `trait` of the embedded-hal which is ensured via trait bound and provides its own type instance with a custom set of methods allowing to interact with the driven device.
### Application