From 84e5976fed82ef68da6446f6d48fbb2d51b03d24 Mon Sep 17 00:00:00 2001 From: Nathan <2266858+njmartin10@users.noreply.github.com> Date: Tue, 6 Nov 2018 22:03:59 -0800 Subject: [PATCH] Consistency: initialised->initialized --- src/portability/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/portability/index.md b/src/portability/index.md index a5e24aa..cfbd1d7 100644 --- a/src/portability/index.md +++ b/src/portability/index.md @@ -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