Fix indent in README

This commit is contained in:
Andrew J. Gillis 2018-09-20 09:02:04 -07:00 committed by GitHub
parent b106e3c6d0
commit e1eb5d77ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,7 @@ func main() {
q.PushFront("hello")
q.PushBack("world")
// Consume deque and print elements.
// Consume deque and print elements.
for q.Len() != 0 {
fmt.Println(q.PopFront())
}