Skip to content

Commit

Permalink
gramar
Browse files Browse the repository at this point in the history
  • Loading branch information
shwina committed May 4, 2022
1 parent 1687d32 commit 1085d34
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/cudf/source/user_guide/data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1085d34

Please sign in to comment.