Skip to content

Commit

Permalink
Rename InvoiceBuilder.Append to AppendInvoiceLines
Browse files Browse the repository at this point in the history
  • Loading branch information
printesoi committed Mar 22, 2024
1 parent b16adb6 commit 200c02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders.go
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ func (b *InvoiceBuilder) WithInvoiceLines(invoiceLines []InvoiceLine) *InvoiceBu
return b
}

func (b *InvoiceBuilder) Append(lines ...InvoiceLine) *InvoiceBuilder {
func (b *InvoiceBuilder) AppendInvoiceLines(lines ...InvoiceLine) *InvoiceBuilder {
b.invoiceLines = append(b.invoiceLines, lines...)
return b
}
Expand Down

0 comments on commit 200c02f

Please sign in to comment.