Skip to content

Commit 863c525

Browse files
committed
GH-8728: Fix Transformer typo in the doc
Fixes #8728
1 parent ce5fabb commit 863c525

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/reference/antora/modules/ROOT/pages/transformer.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ For simple Java & Annotation configuration, the Spring bean POJO method must be
2323
----
2424
public class SomeService {
2525
26-
@Transfomer(inputChannel = "transformChannel", outputChannel = "nextServiceChannel")
26+
@Transformer(inputChannel = "transformChannel", outputChannel = "nextServiceChannel")
2727
public OutputData exampleTransformer(InputData payload) {
2828
...
2929
}

src/reference/antora/modules/ROOT/pages/zip.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Java::
115115
+
116116
[source, java, role="secondary"]
117117
----
118-
@Transfomer(inputChannel = "zipChannel")
118+
@Transformer(inputChannel = "zipChannel")
119119
@Bean
120120
ZipTransformer zipTransformer() {
121121
return new ZipTransformer();
@@ -194,7 +194,7 @@ Java::
194194
+
195195
[source, java, role="secondary"]
196196
----
197-
@Transfomer(inputChannel = "unzipChannel")
197+
@Transformer(inputChannel = "unzipChannel")
198198
@Bean
199199
UnZipTransformer unzipTransformer() {
200200
return new UnZipTransformer();
@@ -271,7 +271,7 @@ Java::
271271
+
272272
[source, java, role="secondary"]
273273
----
274-
@Transfomer(inputChannel = "unzipChannel", outputChannel = "splitChannel")
274+
@Transformer(inputChannel = "unzipChannel", outputChannel = "splitChannel")
275275
@Bean
276276
UnZipTransformer unzipTransformer() {
277277
return new UnZipTransformer();

0 commit comments

Comments
 (0)