2
0
mirror of https://github.com/0xAX/go-algorithms synced 2024-11-11 19:10:39 +00:00

indentation fixed

This commit is contained in:
0xAX 2014-08-12 23:35:02 +06:00
parent e64b29e46f
commit 34210e7815

View File

@ -30,4 +30,4 @@ func (q *Queue) Peek() interface{} {
func (q *Queue) Add(value interface{}) {
q.len += 1
q.queue = append(q.queue, value)
}
}