Skip to content

Commit

Permalink
Merge #450 from branch 'metafacture-documentation-17-fixRenderingOfFl…
Browse files Browse the repository at this point in the history
…uxCommands' of github.com:metafacture/metafacture-core
  • Loading branch information
dr0i committed Jun 7, 2022
2 parents 68c34e7 + e274c74 commit 282afa8
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@
import java.util.regex.Pattern;

/**
* Builds a {@link String} from a template and an {@link Object}. ${o} marks
* the place where the object is to be inserted. If the received object in an
* instance of Triple ${s}, ${p} and ${o} are used instead.
* Builds a {@link String} from a template and an {@link Object}. `${o}` marks
* the place where the object is to be inserted. If the received object is an
* instance of Triple`${s}`, `${p}` and `${o}` are used instead.
*
* @param <T>
* object type
*
* @author Markus Geipel
*
*/
@Description("Builds a String from a template and an Object. Provide template in brackets. ${o} marks the place where the object is to be inserted. " +
"If the object is an instance of Triple ${s}, ${p} and ${o} are used instead.")
@Description("Builds a String from a template and an Object. Provide template in brackets. `${o}` marks the place where the object is to be inserted. " +
"If the object is an instance of Triple `${s}`, `${p}` and `${o}` are used instead.")
@In(Object.class)
@Out(String.class)
@FluxCommand("template")
Expand Down

0 comments on commit 282afa8

Please sign in to comment.