Skip to content

Commit

Permalink
* Fix typos in error messages & JavaDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Apr 16, 2020
1 parent 643a056 commit c3fadf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public final class HeaderMapper {
* @return The map of headers
*/
public static Map<String, String> map(Map<String, String> attributes, Map<String, String> extensions) {
Assert.notNull(attributes, "'attributes' must noy be null");
Assert.notNull(extensions, "'extensions' must noy be null");
Assert.notNull(attributes, "'attributes' must not be null");
Assert.notNull(extensions, "'extensions' must not be null");

Map<String, String> result =
attributes.entrySet()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**
* Provides classes supporting for Cloud Events.
* Provides classes to support for Cloud Events.
*/
package org.springframework.integration.support.cloudevents;

0 comments on commit c3fadf7

Please sign in to comment.