golang / tour

[mirror] A Tour of Go
BSD 3-Clause "New" or "Revised" License
1.53k stars 521 forks source link

tour: defer format improvement #1558

Open nikolaev-rd opened 8 months ago

nikolaev-rd commented 8 months ago

Context: https://go.dev/tour/flowcontrol/12

Just a little format improvement:

A defer statement defers the execution of a function until the surrounding function returns.

to

A defer statement defers the execution of a function until the surrounding function returns.