From 0cce2b156cd92b115fa6f99411fb6fc1d7c3b605 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Mon, 24 Jun 2024 14:19:42 +0200 Subject: [PATCH] Fixed description --- .../templates/reference/properties/TemplateVariable.java | 2 +- .../types/reference/properties/PropertyDefinition.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/gcube/informationsystem/queries/templates/reference/properties/TemplateVariable.java b/src/main/java/org/gcube/informationsystem/queries/templates/reference/properties/TemplateVariable.java index 8976411..73fc601 100644 --- a/src/main/java/org/gcube/informationsystem/queries/templates/reference/properties/TemplateVariable.java +++ b/src/main/java/org/gcube/informationsystem/queries/templates/reference/properties/TemplateVariable.java @@ -16,7 +16,7 @@ import org.gcube.informationsystem.utils.Version; @JsonDeserialize(as=TemplateVariableImpl.class) @TypeMetadata(name = TemplateVariable.NAME, description = "This is the class used to define the a TemplateVariable", version = TemplateVariable.VERSION) @Changelog ({ - @Change(version = TemplateVariable.VERSION, description = "The type comply with @link{Attribute} which add 'defaultValue'"), + @Change(version = TemplateVariable.VERSION, description = "The type comply with {@link Attribute} which add 'defaultValue'"), @Change(version = Version.MINIMAL_VERSION_STRING, description = Version.MINIMAL_VERSION_DESCRIPTION) }) public interface TemplateVariable extends PropertyElement, Attribute { diff --git a/src/main/java/org/gcube/informationsystem/types/reference/properties/PropertyDefinition.java b/src/main/java/org/gcube/informationsystem/types/reference/properties/PropertyDefinition.java index ae0dbf7..8d27224 100644 --- a/src/main/java/org/gcube/informationsystem/types/reference/properties/PropertyDefinition.java +++ b/src/main/java/org/gcube/informationsystem/types/reference/properties/PropertyDefinition.java @@ -20,7 +20,7 @@ import org.gcube.informationsystem.utils.Version; @JsonDeserialize(as = PropertyDefinitionImpl.class) @TypeMetadata(name = PropertyDefinition.NAME, description = "This type provides information for the definition of any properties", version = PropertyDefinition.VERSION) @Changelog ({ - @Change(version = PropertyDefinition.VERSION, description = "The type comply with @link{AttributeDefinition} which add 'defaultValue'"), + @Change(version = PropertyDefinition.VERSION, description = "The type comply with {@link AttributeDefinition} which add 'defaultValue'"), @Change(version = Version.MINIMAL_VERSION_STRING, description = Version.MINIMAL_VERSION_DESCRIPTION) }) @Final