From 08cd4cbcbee368f43fb934d3225196f80fcce3c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?James=20Lefr=C3=A8re?= Date: Fri, 7 Nov 2014 15:42:26 +0000 Subject: [PATCH] Typo fixes I noticed two small typos: "shorthard" -> "shorthand", remove lone "g" --- docs/client/full-api/concepts.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/client/full-api/concepts.html b/docs/client/full-api/concepts.html index 9fdaedfbfe..c131b77373 100644 --- a/docs/client/full-api/concepts.html +++ b/docs/client/full-api/concepts.html @@ -805,7 +805,7 @@ debugger, you've got two options: don't use the `email` package directly. When declaring functions, keep in mind that `function x () {}` is just -shorthard for `var x = function () {}` in JavaScript. Consider these +shorthand for `var x = function () {}` in JavaScript. Consider these examples: // This is the same as 'var x = function () ...'. So x() is @@ -886,7 +886,7 @@ HTTP port for the application to listen on, and the MongoDB endpoint. $ cd my_directory $ (cd programs/server && npm install) $ PORT=3000 MONGO_URL=mongodb://localhost:27017/myapp node main.js -```g +``` Some packages might require other environment variables. For example, the `email` package requires a `MAIL_URL` environment variable.