From 86b4e0aad5d61c0fa8e552f4d9f94d62063016ec Mon Sep 17 00:00:00 2001 From: Edward Kim <33057457+edykim@users.noreply.github.com> Date: Fri, 27 Jul 2018 09:54:42 -0700 Subject: [PATCH] Fix typo --- 02-Use_the_Tools_Available.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-Use_the_Tools_Available.md b/02-Use_the_Tools_Available.md index 735d259..450405b 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -108,7 +108,7 @@ You should use as many compilers as you can for your platform(s). Each compiler * `-Wpedantic` warn if non-standard C++ is used * `-Wconversion` warn on type conversions that may lose data * `-Wsign-conversion` warn on sign conversions - * `-Wmisleading-indentation` warn if identation implies blocks where blocks do not exist + * `-Wmisleading-indentation` warn if indentation implies blocks where blocks do not exist * `-Wduplicated-cond` warn if `if` / `else` chain has duplicated conditions * `-Wduplicated-branches` warn if `if` / `else` branches have duplicated code * `-Wlogical-op` warn about logical operations being used where bitwise were probably wanted