From eafeb3b4611d705f0c83bd652089bab364a8b2db Mon Sep 17 00:00:00 2001 From: cubuspl42 Date: Sat, 14 Dec 2013 14:44:06 +0100 Subject: typo --- javascript.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'javascript.html.markdown') diff --git a/javascript.html.markdown b/javascript.html.markdown index 5f0b7951..4584a28c 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -271,8 +271,8 @@ permanent; // = 10 // outer function's variables, even after the outer function exits. function sayHelloInFiveSeconds(name){ var prompt = "Hello, " + name + "!"; - // Inner functions are put in the local scope local by default, as if they - // were declared with 'var'. + // Inner functions are put in the local scope by default, as if they were + // declared with 'var'. function inner(){ alert(prompt); } -- cgit v1.2.3