From 1085d344ea4fb97a7f803849f6baf07582195e94 Mon Sep 17 00:00:00 2001 From: Ashwin Srinath Date: Wed, 4 May 2022 13:37:57 -0400 Subject: [PATCH] gramar --- docs/cudf/source/user_guide/data-types.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/cudf/source/user_guide/data-types.md b/docs/cudf/source/user_guide/data-types.md index cd89452472d..8963f87d52e 100644 --- a/docs/cudf/source/user_guide/data-types.md +++ b/docs/cudf/source/user_guide/data-types.md @@ -98,10 +98,11 @@ Decimal128Dtype(precision=3, scale=2) ``` Notice the data type of the result: `1.01`, `4.23`, `0.50` can all be -represented with a precision at least 3 and a scale at least 2. +represented with a precision of at least 3 and a scale of at least 2. -However, the value `1.234` needs a precision at least 4, and a scale -at least 3, and cannot be fully represented using this data type: +However, the value `1.234` needs a precision of at least 4, and a +scale of at least 3, and cannot be fully represented using this data +type: ```python >>> s[1] = Decimal("1.234") # raises an error