aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Rounding.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Rounding.h')
-rw-r--r--arm_compute/core/Rounding.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arm_compute/core/Rounding.h b/arm_compute/core/Rounding.h
index f95058c567..a9e9a713e4 100644
--- a/arm_compute/core/Rounding.h
+++ b/arm_compute/core/Rounding.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017 ARM Limited.
+ * Copyright (c) 2017-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -29,7 +29,7 @@ namespace arm_compute
/** Rounding method */
enum class RoundingPolicy
{
- TO_ZERO, /**< Truncates the least significand values that are lost in operations. */
+ TO_ZERO, /**< Truncates the least significant values that are lost in operations. */
TO_NEAREST_UP, /**< Rounds to nearest value; half rounds away from zero */
TO_NEAREST_EVEN, /**< Rounds to nearest value; half rounds to nearest even */
};