From 27706f4a503206d7331498c2ea4765a7f889702d Mon Sep 17 00:00:00 2001 From: oprita Date: Mon, 8 Apr 2013 23:34:43 +0300 Subject: [PATCH] Add ; after Named function expression This is my first contribution to an open source project. Yaaay! --- page/javascript-101/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/page/javascript-101/functions.md b/page/javascript-101/functions.md index 5559108d..0c89a1b0 100644 --- a/page/javascript-101/functions.md +++ b/page/javascript-101/functions.md @@ -21,7 +21,7 @@ function foo() { // Named function expression. var foo = function() { /* do something */ -} +}; ``` ## Using Functions