Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/assets/scripts/OOP.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var OOP = (function() {
}

//Save the package-scoped properties of the class in the package so other
//classes in the same package get access to them
//classes in the same package get access to them.
//Furthermore, set a private package property of the class to its package
//so the package is accessible inside the class via "this.package"
var thePackage = packages[packageName];
Expand Down Expand Up @@ -99,7 +99,7 @@ var OOP = (function() {
// - package methods are in private and package scope (not available publicly)
// - public methods are in private, package and public scope (available everywhere)
// Furthermore, each method is bound to the private scope - from inside a class method
// we can then access every class method and property using "this"
// we can then access every class method and property using "this".
//

if (typeof properties[modifiedPropertyName] === "function")
Expand Down