* fix typos in javadoc
This commit is contained in:
parent
e03105e685
commit
ff71cbc4f3
1 changed files with 2 additions and 2 deletions
|
@ -152,7 +152,7 @@ public class EventBuilder {
|
|||
* Add event detail where strings from the input Collection are filtered not to contain <code>null</code> and then joined using <code>::</code> character.
|
||||
*
|
||||
* @param key of the detail
|
||||
* @param value, can be null
|
||||
* @param values, can be null
|
||||
* @return builder for chaining
|
||||
*/
|
||||
public EventBuilder detail(String key, Collection<String> values) {
|
||||
|
@ -166,7 +166,7 @@ public class EventBuilder {
|
|||
* Add event detail where strings from the input Stream are filtered not to contain <code>null</code> and then joined using <code>::</code> character.
|
||||
*
|
||||
* @param key of the detail
|
||||
* @param value, can be null
|
||||
* @param values, can be null
|
||||
* @return builder for chaining
|
||||
*/
|
||||
public EventBuilder detail(String key, Stream<String> values) {
|
||||
|
|
Loading…
Reference in a new issue