arik-so / ldk-parser

0 stars 2 forks source link

Consider hiding label for methods with only one argument #26

Open arik-so opened 1 year ago

arik-so commented 1 year ago

instead of Invoice.fromStr(s: "string goes here") consider changing the method signature to

class func fromStr(_ s: String)

so the call becomes Invoice.fromStr("string goes here") instead. Thoughts?