Skip to content

Commit 9391d6f

Browse files
author
Isaac Brodsky
committed
Update README for 3.0.3
1 parent a4ca14d commit 9391d6f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ Add it to your pom.xml:
1515
<dependency>
1616
<groupId>com.uber</groupId>
1717
<artifactId>h3</artifactId>
18-
<version>3.0.2</version>
18+
<version>3.0.3</version>
1919
</dependency>
2020
```
2121

2222
Or, using Gradle:
2323

2424
```gradle
25-
compile("com.uber:h3:3.0.2")
25+
compile("com.uber:h3:3.0.3")
2626
```
2727

2828
Encode a location into a hexagon address:
@@ -40,7 +40,7 @@ String hexAddr = h3.geoToH3Address(lat, lng, res);
4040
Decode a hexagon address into coordinates:
4141

4242
```java
43-
Vector2D[] geoCoords = h3.h3ToGeoBoundary(hexAddr);
43+
List<GeoCoord> geoCoords = h3.h3ToGeoBoundary(hexAddr);
4444
```
4545

4646
## Supported Operating Systems

0 commit comments

Comments
 (0)