From 87e15208a38fa185e08a4044aa41139ee7ff9b2d Mon Sep 17 00:00:00 2001 From: krepl <36075613+krepl@users.noreply.github.com> Date: Mon, 11 Feb 2019 21:17:13 -0500 Subject: [PATCH] Fix typo in c-tips ("varity" -> "variety") --- src/c-tips/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c-tips/index.md b/src/c-tips/index.md index 14d7eea..dadaddc 100644 --- a/src/c-tips/index.md +++ b/src/c-tips/index.md @@ -6,7 +6,7 @@ highlight how things you might already be used to in C are different in Rust. ## Preprocessor -In embedded C it is very common to use the preprocessor for a varity of +In embedded C it is very common to use the preprocessor for a variety of purposes, such as: * Compile-time selection of code blocks with `#ifdef`