Skip to content

Commit afcd892

Browse files
committed
Modifies docstring
1 parent bdc5764 commit afcd892

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

google/cloud/bigquery/enums.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -369,16 +369,16 @@ class RoundingMode(enum.Enum):
369369
ROUND_HALF_AWAY_FROM_ZERO: rounds half values away from zero when applying
370370
precision and scale upon writing of NUMERIC and BIGNUMERIC values.
371371
For Scale: 0
372-
1.1, 1.2, 1.3, 1.4 => 1
373-
1.5, 1.6, 1.7, 1.8, 1.9 => 2
372+
* 1.1, 1.2, 1.3, 1.4 => 1
373+
* 1.5, 1.6, 1.7, 1.8, 1.9 => 2
374374
375375
ROUND_HALF_EVEN: rounds half values to the nearest even value when applying
376376
precision and scale upon writing of NUMERIC and BIGNUMERIC values.
377377
For Scale: 0
378-
1.1, 1.2, 1.3, 1.4 => 1
379-
1.5 => 2
380-
1.6, 1.7, 1.8, 1.9 => 2
381-
2.5 => 2
378+
* 1.1, 1.2, 1.3, 1.4 => 1
379+
* 1.5 => 2
380+
* 1.6, 1.7, 1.8, 1.9 => 2
381+
* 2.5 => 2
382382
"""
383383

384384
ROUNDING_MODE_UNSPECIFIED = 0

0 commit comments

Comments
 (0)