top | item 37576249

(no title)

chen_dev | 2 years ago

the 'fix' to the example in the README should be obvious, but for reference:

- for _, e := range es {

- pumpUp(&e)

}

+ for i := range es {

+ pumpUp(&es[i])

}

discuss

order

No comments yet.