Skip to content

Commit

Permalink
📝 Fix some broken documentation references
Browse files Browse the repository at this point in the history
  • Loading branch information
miscoined authored and ebullient committed Jun 2, 2024
1 parent 61a1200 commit 2e0d3e0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* </ul>
*
* @param ac The armor class as a {@link QuteDataArmorClass}
* @param savingThrows The saving throws, as {@link QuteSavingThrows}
* @param savingThrows The saving throws, as {@link QuteDataDefenses.QuteSavingThrows}
* @param hpHardnessBt HP, hardness, and broken threshold stored in a {@link QuteDataHpHardnessBt}
* @param additionalHpHardnessBt Additional HP, hardness, or broken thresholds for other HP components as a map of
* names to {@link QuteDataHpHardnessBt}
Expand Down Expand Up @@ -69,9 +69,9 @@ public String toString() {
* all saves vs. magic
* </blockquote>
*
* @param fort Fortitude saving throw bonus, as a {@link QuteDataNamedBonus}
* @param ref Reflex saving throw bonus, as a {@link QuteDataNamedBonus}
* @param will Will saving throw bonus, as a {@link QuteDataNamedBonus}
* @param fort Fortitude saving throw bonus, as a {@link QuteDataGenericStat.QuteDataNamedBonus}
* @param ref Reflex saving throw bonus, as a {@link QuteDataGenericStat.QuteDataNamedBonus}
* @param will Will saving throw bonus, as a {@link QuteDataGenericStat.QuteDataNamedBonus}
* @param abilities Any saving throw related abilities
*/
@TemplateData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,15 @@
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;

import dev.ebullient.convert.StringUtil;
import dev.ebullient.convert.qute.NamedText;
import dev.ebullient.convert.qute.QuteUtil;
import dev.ebullient.convert.tools.Tags;
import dev.ebullient.convert.tools.pf2e.Pf2eSources;
import io.quarkus.qute.TemplateData;

import static dev.ebullient.convert.StringUtil.formatMap;
import static dev.ebullient.convert.StringUtil.join;
import static dev.ebullient.convert.StringUtil.joinConjunct;
import static dev.ebullient.convert.StringUtil.joinWithPrefix;
import static dev.ebullient.convert.StringUtil.parenthesize;

/**
* Pf2eTools Spell attributes ({@code spell2md.txt})
Expand All @@ -42,7 +37,8 @@ public class QuteSpell extends Pf2eQuteBase {
public final QuteDataDuration castDuration;
/**
* The required spell components as a list of formatted strings (maybe empty). Use
* {@link QuteSpell#formattedComponents()} to get a pre-formatted representation.
* {@link dev.ebullient.convert.tools.pf2e.qute.QuteSpell#formattedComponents()}
* to get a pre-formatted representation.
*/
public final List<String> components;
/** The material cost of the spell as a formatted string (optional) */
Expand All @@ -53,7 +49,7 @@ public class QuteSpell extends Pf2eQuteBase {
public final String requirements;
/** Spell target attributes as {@link dev.ebullient.convert.tools.pf2e.qute.QuteSpell.QuteSpellTarget QuteSpellTarget} */
public final QuteSpellTarget targeting;
/** Spell save, as {@link QuteSpellSave} */
/** Spell save, as {@link dev.ebullient.convert.tools.pf2e.qute.QuteSpell.QuteSpellSave} */
public final QuteSpellSave save;
/** Spell duration, as {@link QuteDataTimedDuration} */
public final QuteSpellDuration duration;
Expand Down

0 comments on commit 2e0d3e0

Please sign in to comment.