HACKERALERT / Picocrypt

A very small, very simple, yet very secure encryption tool.
GNU General Public License v3.0
2.42k stars 145 forks source link

fix: redefinition of the built-in function `delete` #173

Closed pilinux closed 1 year ago

pilinux commented 1 year ago

Go already has a built-in function called delete.

https://pkg.go.dev/builtin#delete

HACKERALERT commented 1 year ago

Shadowing in this case should be fine since I don't use delete in its function form at all in the program. I think "delete" sounds better and is more consistent with the other features in the code than "del".