From 263603597405cf4125787fa3ae43c3bcbd336e16 Mon Sep 17 00:00:00 2001 From: rxi Date: Thu, 27 Feb 2014 22:03:00 +0000 Subject: [PATCH] Fixed incorrect description of lume.round() --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f088ca9..d831881 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,8 @@ lume = require "lume" Returns the value `x` clamped between the values `min` and `max` ### lume.round(x) -Rounds `x` to the nearest integer. Rounds towards zero if we're midway between -two integers. +Rounds `x` to the nearest integer. Rounds away from zero if we're midway +between two integers. ### lume.sign(x) Returns `1` if `x` is 0 or above, returns `-1` when `x` is negative.