rthornton128 / goncurses

NCurses Library for Go
Other
383 stars 51 forks source link

Typo in signature of Window.VLine #15

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Window.HLine has the signature "func (w *Window) HLine(y, x int, ch Char, wid 
int)", whereas Window.VLine is "func (w *Window) VLine(y, x, ch Char, wid 
int)".  This makes the y and x coordinate values Char type - which doesn't seem 
right, presumably this should be "func (w *Window) VLine(y, x int, ch Char, wid 
int)".

Original issue reported on code.google.com by jul...@quantumfyre.co.uk on 10 Dec 2013 at 10:43

GoogleCodeExporter commented 9 years ago
Thanks, it has been fixed in tip.

Original comment by rthornto...@gmail.com on 10 Dec 2013 at 4:22