You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by dk...@apache.org on 2019/11/19 04:18:31 UTC

[sling-org-apache-sling-app-cms] 01/02: Fixing javadoc

This is an automated email from the ASF dual-hosted git repository.

dklco pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-app-cms.git

commit 1e4a53ac401aedead5e85d929822347e26a0e4e8
Author: Dan Klco <dk...@apache.org>
AuthorDate: Mon Nov 18 23:02:04 2019 -0500

    Fixing javadoc
---
 .../main/java/org/apache/sling/cms/transformer/Transformer.java   | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java b/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java
index 9c5e997..a7e27ef 100644
--- a/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java
+++ b/transformer/src/main/java/org/apache/sling/cms/transformer/Transformer.java
@@ -30,10 +30,10 @@ public interface Transformer {
     /**
      * Transforms the resource
      * 
-     * @param resource the resource to transform
-     * @param commands the commands to execute
-     * @param format   the format of the stream to return
-     * @param out      the OutputStream to which to write the transformed file
+     * @param resource       the resource to transform
+     * @param transformation the transformation to execute
+     * @param format         the format of the stream to return
+     * @param out            the OutputStream to which to write the transformed file
      * @throws IOException an exception occurs transforming the resource
      */
     void transform(Resource resource, Transformation transformation, OutputFileFormat format, OutputStream out)