Why #golang devs like single-letter variable names so much? I really hate it!
@__pity__ like the link says, https://go.dev/wiki/CodeReviewComments#receiver-names, "familiarity admits brevity". In that case I know `t` is very likely a method receiver. It need not a longer name as it is often repeated throughout the method. And provided that there is a discipline that other variable names (excluding things like i, j, k) are descriptive.
Go Wiki: Go Code Review Comments - The Go Programming Language

@gmhafiz I can't, I tried but I hate it. 😅
@gmhafiz on the other hand, when I see self in my code isn't likely a method receiver, I'm 100 % sure. 😁
@__pity__ reading other people's code sucks right 😅