blst icon indicating copy to clipboard operation
blst copied to clipboard

Fix import, typo, and redundant parentheses

Open Pricstas opened this issue 9 months ago • 0 comments

  1. Added import "fmt" to avoid missing dependencies.

  2. Fixed a typo in a comment:

    • // take into consideration the possility that application reduced
    • // take into consideration the possibility that application reduced
  3. Removed unnecessary parentheses in if condition:

    • if (pt != nil) {
    • if pt != nil {

Pricstas avatar Mar 12 '25 16:03 Pricstas