Some packages have a commented import statement just after the package statement. An example is visible here.
. . .
package truetype // import "github.com/golang/freetype/truetype"
. . .
It seam that this appears on a package inside a module. Not all files of the package have this comment.
What is the purpose of this comment ? Why is it there ?
I didn’t find anything about this in the go specification.