summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdel Gadllah <adel.gadllah@gmail.com>2011-06-29 19:17:02 +0200
committerAdel Gadllah <adel.gadllah@gmail.com>2011-06-29 19:17:02 +0200
commitf6c11dfef30ff1349a4bc67b85ce016170fc9318 (patch)
tree54302b32656fbedfc949850d786ddb3cd6dbcbef
parent929d910c73eb3cd4fc1c5be05a889cf841a897d6 (diff)
downloadgjs-f6c11dfef30ff1349a4bc67b85ce016170fc9318.tar.gz
Examples: Add missing semicolon in http-server
-rw-r--r--examples/http-server.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/http-server.js b/examples/http-server.js
index faf53f1b..9a180e1f 100644
--- a/examples/http-server.js
+++ b/examples/http-server.js
@@ -3,7 +3,7 @@
const Lang = imports.lang;
const GLib = imports.gi.GLib;
-const Soup = imports.gi.Soup
+const Soup = imports.gi.Soup;
function HTTPServer(args) {
this._init(args);