Skip to content

Commit d22c3a1

Browse files
committed
Add description and url to pom
1 parent f385cb7 commit d22c3a1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,8 @@ publishing {
234234
pom {
235235
name = 'SmoothieMap 2'
236236
inceptionYear = '2018'
237+
description = 'Map implementation with low footprint and no latency spikes'
238+
url = 'https://github.com/TimeAndSpaceIO/SmoothieMap'
237239
licenses {
238240
license {
239241
name = 'The Apache Software License, Version 2.0'

src/main/java/io/timeandspace/smoothie/OptimizationObjective.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public enum OptimizationObjective {
2424
/**
2525
* In the "low-garbage" mode, {@link SmoothieMap} generates very little garbage (that is, heap
26-
* objects that later become unreachable and need to be swept by the GC), either during the
26+
* objects that later become unreachable and need to be swept by the GC), either during the
2727
* growth phase or the shrinkage phase (when a map reduces in size after the peak growth).
2828
*
2929
* @implSpec Configuring {@link SmoothieMapBuilder#optimizeFor

0 commit comments

Comments
 (0)