From 20d9a21d138701e4ea232f18d2808ef932b5e5d5 Mon Sep 17 00:00:00 2001 From: Nathan <2266858+njmartin10@users.noreply.github.com> Date: Tue, 6 Nov 2018 21:56:54 -0800 Subject: [PATCH] Typo intialise->initialize --- 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 754ef63..77a2191 100644 --- a/src/portability/index.md +++ b/src/portability/index.md @@ -42,7 +42,7 @@ As said above there are three main users of the HAL: A HAL implementation provides the interfacing between the hardware and and the users of the HAL traits. Typical implementations consist of three parts: * One or more hardware specific types -* Functions to create and intialise such a type, often providing various configuration options (speed, operation mode, use pins, etc.) +* Functions to create and initialize such a type, often providing various configuration options (speed, operation mode, use pins, etc.) * one or more `trait` `impl` of **embedded-hal** traits for that type Such a **HAL implementation** can come in various flavours: