pamaehara / go-tour

Automatically exported from code.google.com/p/go-tour
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

// missing high index implies len(s) fmt.Println("p[4:] ==", p[4:]) should be changed to... #100

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
https://feedback.corp.google.com/#/Report/877875712

Description:
    // missing high index implies len(s)
    fmt.Println("p[4:] ==", p[4:])

should be changed to

    // missing high index implies len(p)
    fmt.Println("p[4:] ==", p[4:])

UI language: en
Detected language: en

Original issue reported on code.google.com by feedback...@gmail.com on 27 Jul 2013 at 3:41