Skip to content

Commit ef3c91d

Browse files
committed
Minor changes
1 parent b79455b commit ef3c91d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

BigReal.Playground/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ExtendedNumerics;
1+
using ExtendedNumerics;
22

33
Console.WriteLine(double.Log(10) + " -> " + BigReal.Log(10));
44
Console.WriteLine(double.Log(10, 3) + " -> " + BigReal.Log(10, (BigReal)3));
@@ -32,7 +32,6 @@
3232
Console.WriteLine(BigReal.Truncate(BigReal.Sec(100), 20)); // 1.15966382290469383255
3333
Console.WriteLine(BigReal.Truncate(BigReal.Cosec(100), 20)); // -1.97485753142409996121
3434
Console.WriteLine(BigReal.Truncate(BigReal.Cot(100), 20)); // -1.7029569194264692161
35-
return;
3635

3736
Console.WriteLine("===========================");
3837

BigReal/BigReal.Approximations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace ExtendedNumerics;
1+
namespace ExtendedNumerics;
22

33
partial struct BigReal {
44
/// <summary>

0 commit comments

Comments
 (0)