From 883e93778504208146812ba8ed2f115ec9d430e9 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 7 Feb 2018 13:37:58 -0800 Subject: [PATCH] Fix mention of `apply` in NEWS --- NEWS.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index 874086b..6896949 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -15,8 +15,6 @@ Removals Other Breaking Changes ------------------------------ -* `apply` has been replaced with Python-style unpacking operators `#*` and - `#**` (e.g., `(f #* args #** kwargs)`) * Single-character "sharp macros" are now "tag macros", which can have longer names * `xi` from `hy.extra.anaphoric` is now a tag macro `#%` @@ -32,6 +30,8 @@ New Features `#[FOO[` and `]FOO]`, where `FOO` is customizable * Added support for PEP 492 (`async` and `await`) with `fn/a`, `defn/a`, `with/a`, and `for/a` +* Added Python-style unpacking operators `#*` and `#**` (e.g., + `(f #* args #** kwargs)`) * Added a macro `comment` * Added EDN `#_` syntax to discard the next term * `while` loops may now contain an `else` clause, like `for` loops