Skip to content

Commit 1616731

Browse files
author
Chandan Rai
committed
corrected typos
1 parent 35ad984 commit 1616731

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Chapter10/chapter10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ The full source code of `practicalnode/ch10/cluster.js` is as follows:
498498
cluster.worker.process.pid, port);
499499
var app = express();
500500
app.get('*', function(req, res) {
501-
res.send(200, 'cluser '
501+
res.send(200, 'cluster '
502502
+ cluster.worker.process.pid
503503
+ ' responded \n');
504504
});

Chapter2/chapter2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ To double-check the installation of Express.js and its dependencies, we can run
242242

243243
# Express.js Scaffolding
244244

245-
So far, we've covered Expres.js installation. When it comes to prototyping, it's vital to be able to get started quickly with the solid app skeleton, which is why many modern frameworks provide some type of scaffolding. Now is the time to explore its rapid app creation mechanism— Express.js Generator!
245+
So far, we've covered Express.js installation. When it comes to prototyping, it's vital to be able to get started quickly with the solid app skeleton, which is why many modern frameworks provide some type of scaffolding. Now is the time to explore its rapid app creation mechanism— Express.js Generator!
246246

247247
Comparable with Ruby on Rails and many other web frameworks, Express.js comes with a CLI for jump-starting your development process. The CLI generates a basic foundation for the most common cases.
248248

Chapter3/chapter3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Most of you have heard about TDD and why it's a good thing to follow. The ma
4848

4949
- Verify that the test passes
5050

51-
BDD is a specialized version of TDD that specifies what needs to be unit-tested from the perspective of business requirements. It's possible to just write test with good old plain core Node.js module `assert`. However, as in many other situations, using a framework is more preferabble. For both TDD and BDD, we'll be using the Mocha testing framework because we gain many things for “free.” Among them are the following:
51+
BDD is a specialized version of TDD that specifies what needs to be unit-tested from the perspective of business requirements. It's possible to just write test with good old plain core Node.js module `assert`. However, as in many other situations, using a framework is more preferable. For both TDD and BDD, we'll be using the Mocha testing framework because we gain many things for “free.” Among them are the following:
5252

5353
- Reporting
5454
- Asynchronous support

Chapter5/chapter5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ The configs now include more Connect/Express middleware, the meanings of most of
547547
app.use(require('stylus').middleware(__dirname + '/public'));
548548
app.use(express.static(path.join(__dirname, 'public')));
549549

550-
For development, we use the standart Express.js 4 error handler that we imported earlier with `require`:
550+
For development, we use the standard Express.js 4 error handler that we imported earlier with `require`:
551551

552552
if ('development' == app.get('env')) {
553553
app.use(errorHandler());

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ If you'd like to contribute financially towards the effort (or any of my other o
3434

3535
# In-person Training
3636

37-
Practical Node is a work of 30+ in-person courses, workshops and classes delivered by me in-person at various companies (Walmart Labs, Cisco, Intuit, Starbucks, Capital One, OnDeck, HubSpot, VMWare to name just a few), dev schools (Hack Reactor, DevBootcampm, Flat Iron NY, etc.) and conferences (ForwardJS, Node Interactive and others). If you need corporate onsite in-person training delivered by me, then [send me a message](https://webapplog.com/azat).
37+
Practical Node is a work of 30+ in-person courses, workshops and classes delivered by me in-person at various companies (Walmart Labs, Cisco, Intuit, Starbucks, Capital One, OnDeck, HubSpot, VMWare to name just a few), dev schools (Hack Reactor, DevBootcamp, Flat Iron NY, etc.) and conferences (ForwardJS, Node Interactive and others). If you need corporate onsite in-person training delivered by me, then [send me a message](https://webapplog.com/azat).
3838

3939
# Online Video Training
4040

@@ -46,7 +46,7 @@ TBD
4646

4747
# Supporters
4848

49-
Practical Node, 2nd Edition was supported through the Kickstarter campagin (funded in just three days). Thank you to the major backers of the book:
49+
Practical Node, 2nd Edition was supported through the Kickstarter campaign (funded in just three days). Thank you to the major backers of the book:
5050

5151
* **[DevelopIntelligence](http://www.developintelligence.com): Managed learning solutions including training design and development, program delivery and management** - $500
5252
* Matthew Amacker - $200

0 commit comments

Comments
 (0)