From dfe18bf0a88fe78a3eb8151d528aef78cc64ef0a Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Wed, 23 Mar 2016 08:40:21 -0500 Subject: [PATCH] NEWS: fix typo [skip ci] --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index b190f0a9c..3faf8899c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -44,7 +44,7 @@ See LICENSE for licensing details (GPL v2). ### code - irc_dictionary and irc_radixtree stuff is now in librb, prefixed accordingly. Typedefs have been added for consistency reasons. For example, now you would - write `rb_dictionary \*foo` and `RB_DICTIONARY_FOREACH`. + write `rb_dictionary *foo` and `RB_DICTIONARY_FOREACH`. - C99 bools have been added. Don't use ints as simple true/false flags anymore. Don't use `YES`/`NO` or `TRUE`/`FALSE` macros (`TRUE`/`FALSE` has been removed and `YES`/`NO` is awaiting the same fate). Use just `true` and `false`.