From e6c11a1d275af3adc0316e3f0f20ebd6b8612bef Mon Sep 17 00:00:00 2001 From: Roman Ponomarev <maksugr@gmail.com> Date: Tue, 8 Nov 2016 02:41:25 +0300 Subject: [PATCH] fixes mistake: character.batman -> character.pseudonym --- chapters/ch03.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/ch03.asciidoc b/chapters/ch03.asciidoc index 8115f7a..bbaae2d 100644 --- a/chapters/ch03.asciidoc +++ b/chapters/ch03.asciidoc @@ -366,7 +366,7 @@ var character = { } ---- -If you wanted a +pseudonym+ variable referencing +character.batman+, you could write the following bit of ES5 code. This is commonplace when, for instance, you'll be referencing +pseudonym+ in several places in your codebase and you'd prefer to avoid typing out +character.pseudonym+ each time. +If you wanted a +pseudonym+ variable referencing +character.pseudonym+, you could write the following bit of ES5 code. This is commonplace when, for instance, you'll be referencing +pseudonym+ in several places in your codebase and you'd prefer to avoid typing out +character.pseudonym+ each time. [source,javascript] ----