diff --git a/Style-Guide.md b/Style-Guide.md index 2ae5661..d16c83e 100644 --- a/Style-Guide.md +++ b/Style-Guide.md @@ -2,7 +2,7 @@ ## Classes The standard way of creating classes in pdf.js is the following. Please note that by class we mean an object that is class-like.
-var Name = (function NameConstructor() {
+var Name = (function NameClosure() {
function Name(name) {
this.name = name;
}