Skip to content

Commit 94b2838

Browse files
Fix small typo (#333)
1 parent d6269a7 commit 94b2838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

domain-classes-generator/src/main/scala/flatgraph/codegen/DomainClassesGenerator.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class DomainClassesGenerator(schema: Schema) {
375375
newNodeFluent.append(s"def $pname(value: $ptyp): this.type = {this.$pname = value; this }")
376376
baseNodeProps.append(s"def $pname: $ptyp")
377377
storedNodeProps.append(
378-
s"def $pname: ${styp} = flatgraph.Accessors.getNodePropertySingle(graph, nodeKind = nodeKind, propertyKind = $index, deq = seq, default = null: ${styp})"
378+
s"def $pname: ${styp} = flatgraph.Accessors.getNodePropertySingle(graph, nodeKind = nodeKind, propertyKind = $index, seq = seq, default = null: ${styp})"
379379
)
380380
propDictItems.append(s"""res.put("$pname", this.$pname )""")
381381
flattenItems.append(s"interface.countProperty(this, $pid, 1)")

0 commit comments

Comments
 (0)