Skip to content

Commit

Permalink
Fix wrong reference in the Filtered Routing example of the README.md …
Browse files Browse the repository at this point in the history
…file
  • Loading branch information
gfinocchiaro committed Aug 23, 2024
1 parent 9e6a548 commit 75bfbe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ Consider the following configuration:

```xml
<param name="item-template.by-name">user-#{firstName=VALUE.name,lastName=VALUE.surname}</param>
<param name="item-template.by-age">user-#{years=VALUE.age}</param>
<param name="item-template.by-age">user-#{age=VALUE.age}</param>
<param name="map.user.to">item-template.by-name,item-template.by-age</param>
```

Expand Down Expand Up @@ -1643,7 +1643,7 @@ Example:

```
item.templates=by-name:user-#{firstName=VALUE.name,lastName=VALUE.surname}; \
by-age:user-#{years=VALUE.age}
by-age:user-#{age=VALUE.age}
topic.mappings=user:item-template.by-name,item-template.by-age
```
Expand Down

0 comments on commit 75bfbe2

Please sign in to comment.