Skip to content

Commit 2157478

Browse files
committed
Fix two node format descriptions
1 parent 31dc42b commit 2157478

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/variantsync/diffdetective/diff/difftree/serialize/nodeformat/MappingsDiffNodeFormat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
/**
66
* Print NodeType and DiffType and Mappings of Annotations.
7-
* The produced label will be <code>NodeType"annotation formula"</code> for mapping nodes,
8-
* and <code>NodeType""</code> for non-mapping nodes.
7+
* The produced label will be <code>DiffType_NodeType_"annotation formula"</code> for mapping nodes,
8+
* and <code>DiffType_NodeType_""</code> for non-mapping nodes.
99
* @see DiffNodeLabelPrettyfier#prettyPrintIfAnnotationOr(DiffNode, String)
1010
* @author Paul Bittner, Kevin Jedelhauser
1111
*/

src/main/java/org/variantsync/diffdetective/diff/difftree/serialize/nodeformat/TypeDiffNodeFormat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import org.variantsync.diffdetective.diff.difftree.DiffNode;
44

55
/**
6-
* Labels are of the form <code>NodeType</code>.
6+
* Labels are of the form <code>DiffType_NodeType</code>.
77
* @author Paul Bittner, Kevin Jedelhauser
88
*/
99
public class TypeDiffNodeFormat implements DiffNodeLabelFormat {

0 commit comments

Comments
 (0)