Skip to content

Commit

Permalink
Fixed javadoc error.
Browse files Browse the repository at this point in the history
  • Loading branch information
GlenKPeterson committed May 9, 2022
1 parent 6464832 commit 2477a86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/organicdesign/fp/collections/ImMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public interface ImMap<K,V> extends BaseUnsortedMap<K,V> {
@NotNull MutMap<K,V> mutable();

/**
* Efficiently adds {@link UnmodMap.UnEntry}&lt;K,V> to this ImMap. Ordering is ignored.
* Efficiently adds {@link UnmodMap.UnEntry}&lt;K,V&gt; to this ImMap. Ordering is ignored.
* @param items the values to add
* @return a new ImMap with the additional items.
*/
Expand All @@ -55,7 +55,7 @@ public interface ImMap<K,V> extends BaseUnsortedMap<K,V> {
}

/**
* Efficiently adds {@link UnmodMap.UnEntry}&lt;K,V> to this ImMap. Ordering is ignored.
* Efficiently adds {@link UnmodMap.UnEntry}&lt;K,V&gt; to this ImMap. Ordering is ignored.
* @param items the values to add
* @return a new ImMap with the additional items.
*/
Expand Down

0 comments on commit 2477a86

Please sign in to comment.