Replaced GOF footnote with bibtex citation

master
Mike Gerwitz 2012-04-05 18:39:55 -04:00
parent 10095422dc
commit 688634a883
2 changed files with 8 additions and 1 deletions

View File

@ -21,6 +21,13 @@
howpublished = {\url{http://jsperf.com/coope-function-wrapper-w-blogic}},
}
@book{gof,
author = {Erich Gamma and Richard Helm and Ralph Johnson and John Vlissides},
title = {Design Patterns: Elements of Reusable Object-Oriented Software},
publisher = {Addison-Wesley},
year = {1994}
}
@book{oreilly-hpj,
author = {Nicholas C. Zakas},
title = {High Performance JavaScript},

View File

@ -15,7 +15,7 @@ var obj = { foo: "bar" };
\end{verbatim}
In a classical sense, object literals can be thought of as anonymous
singletons;\footnote{GOF.} that is, they have no name (they are identified by
singletons; \cite{gof} that is, they have no name (they are identified by
the variable to which they are assigned) and only one instance of the literal
will exist throughout the life of the software.\footnote{Technically, one could
set the prototype of a constructor to be the object defined by the literal (see