Skip to content

Commit 088dd02

Browse files
committed
Edit README; edit pom.xml for project
1 parent 0026982 commit 088dd02

5 files changed

Lines changed: 218 additions & 213 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project, add the following to the `dependencies` section in your `pom.xml` file:
1717
<dependency>
1818
<groupId>com.github.peteroupc</groupId>
1919
<artifactId>numbers</artifactId>
20-
<version>1.8.0</version>
20+
<version>1.8.1</version>
2121
</dependency>
2222
```
2323

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.peteroupc</groupId>
55
<artifactId>numbers</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.8.0</version>
7+
<version>1.8.1</version>
88
<name>Arbitrary-Precision Number Library</name>
99
<description>A Java library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.</description>
1010
<url>https://github.com/peteroupc/Numbers-Java</url>

src/main/java/com/upokecenter/numbers/RadixMath.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2282,8 +2282,10 @@ public T Power(T thisValue, T pow, EContext ctx) {
22822282
// thisValue is 1 and power is a negative integer, the reciprocal of 1
22832283
// is used, which will have an exponent of 0, according to the
22842284
// General Decimal Arithmetic Specification
2285-
return this.PowerIntegral(this.helper.ValueOf(1), signedMant,
2286-
ctx);
2285+
return this.PowerIntegral(
2286+
this.helper.ValueOf(1),
2287+
signedMant,
2288+
ctx);
22872289
} else {
22882290
return this.PowerIntegral(thisValue, signedMant, ctx);
22892291
}

0 commit comments

Comments
 (0)