Move sequence operation classification higher than sample
Otherwise it gets eaten by that @sample tag.
This commit is contained in:
@@ -305,14 +305,14 @@ class MemberBuilder(
|
||||
StringReader(methodDoc.trim()).forEachLine { line ->
|
||||
builder.append(" * ").append(line.trim()).append("\n")
|
||||
}
|
||||
if (samples.any()) {
|
||||
builder.append(" * \n")
|
||||
samples.forEach { builder.append(" * @sample $it\n")}
|
||||
}
|
||||
if (family == Sequences && sequenceClassification.isNotEmpty()) {
|
||||
builder.append(" *\n")
|
||||
builder.append(" * The operation is ${sequenceClassification.joinToString(" and ") { "_${it}_" }}.\n")
|
||||
}
|
||||
if (samples.any()) {
|
||||
builder.append(" * \n")
|
||||
samples.forEach { builder.append(" * @sample $it\n")}
|
||||
}
|
||||
builder.append(" */\n")
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user