Skip to content

Commit cbc8289

Browse files
author
Dmitry Vasilevsky
committed
format
1 parent 43ddcda commit cbc8289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/Std/Convert.qs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ function BigIntAsBoolArray(number : BigInt, bits : Int) : Bool[] {
171171
///
172172
/// # Output
173173
/// Int representation of a number.
174-
function BigIntAsInt(number: BigInt) : Int {
174+
function BigIntAsInt(number : BigInt) : Int {
175175
let max = 9_223_372_036_854_775_807L;
176176
let min = -9_223_372_036_854_775_808L;
177177
Fact(number >= min and number <= max, $"`number`=number is too big to fit into Int.");

0 commit comments

Comments
 (0)