From fd0430d310e28a38fe6925b8d429251306d50345 Mon Sep 17 00:00:00 2001 From: Edwin Lee Date: Thu, 22 Jan 2015 15:54:09 -0700 Subject: [PATCH] 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 17de2ff..e7396bb 100644 --- a/02-Use_the_Tools_Available.md +++ b/02-Use_the_Tools_Available.md @@ -46,7 +46,7 @@ You should use as many compilers as you can for your platform(s). Each compiler `-Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic` * `-Wall -Wextra` reasonable and standard - * `-Wshadow` warn the user if a variable declartion shadows one from a parent context + * `-Wshadow` warn the user if a variable declaration shadows one from a parent context * `-Wnon-virtual-dtor` warn the user if a class with virtual functions has a non-virtual destructor. This helps catch hard to track down memory errors * `-pedantic`