notes for @decorator
diff --git a/Misc/NEWS b/Misc/NEWS
index 85de304..15713e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,12 @@
 Core and builtins
 -----------------
 
+- PEP-0318, Function Decorators have been added to the language. These are
+  implemented using the Java-style @decorator syntax, like so:
+     @staticmethod
+     def foo(bar):
+  (The PEP needs to be updated to reflect this XXX before 2.4a2)
+
 - When importing a module M raises an exception, Python no longer leaves M
   in sys.modules.  Before 2.4a2 it did, and a subsequent import of M would
   succeed, picking up a module object from sys.modules reflecting as much