From ab46e52a37a1ae7dba4478be10c1273d642a445a Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 11 Jan 2011 18:30:32 -0500 Subject: [PATCH] Updated README to reflect Interface implementation --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 519df57..0784da1 100644 --- a/README.md +++ b/README.md @@ -3,13 +3,14 @@ ease.js is (to be) a basic collection of CommonJS modules intended to "ease" the transition into JavaScript from other Object-Oriented languages. It provides an intuitive means of achieving classical inheritance and has planned -support for interfaces, traits and mixins. +support traits/mixins. Current support includes: * Easy class creation * Classical inheritance * Abstract classes and methods +* Interfaces **This project is still under development.** @@ -147,6 +148,7 @@ Though JavaScript doesn't currently implement classes, interfaces, etc, it does reserve the keywords. In an effort to ensure that ease.js will not clash, the following precautions are taken: -* `Class` is used with a capital C +* `Class` is used with a capital 'C' +* `Interface` is used with a capital 'I' * Reserved keywords are quoted when used (e.g. in property strings)