Skip to content

Commit

Permalink
docs(*): remove "`" from comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dbohdan committed Jan 3, 2025
1 parent daf6d47 commit 69a2138
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
2 changes: 1 addition & 1 deletion config_mac.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
2 changes: 1 addition & 1 deletion config_posix.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
2 changes: 1 addition & 1 deletion crypto.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
2 changes: 1 addition & 1 deletion editor.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
2 changes: 1 addition & 1 deletion git.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Original repository: https://github.com/dylanaraps/pash (archived).
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
4 changes: 2 additions & 2 deletions main_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down Expand Up @@ -334,7 +334,7 @@ func TestRekey(t *testing.T) {
return "", fmt.Errorf("failed to generate age identity: %w", err)
}

// Write the public key to `.age-recipients`.
// Write the public key to .age-recipients.
recipientsPath := filepath.Join(dataDir, "store/.age-recipients")
err = os.WriteFile(recipientsPath, []byte(identity.Recipient().String()+"\n"), 0600)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion script/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func build(dir string, target BuildTarget, version string) error {
ext = ".exe"
}

// Map `GOARCH` and `GOOS` to user-facing names.
// Map GOARCH and GOOS to user-facing names.
arch := target.arch
system := target.os

Expand Down
2 changes: 1 addition & 1 deletion tree.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down
4 changes: 2 additions & 2 deletions user_input.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// pago - a command-line password manager.
//
// License: MIT.
// See the file `LICENSE`.
// See the file LICENSE.

package main

Expand Down Expand Up @@ -99,7 +99,7 @@ func askYesNo(prompt string) (bool, error) {
return answer == "y", nil
}

// Ask the user to input a password, twice if `confirm` is true.
// Ask the user to input a password, twice if confirm is true.
func readNewPassword(confirm bool) (string, error) {
pass, err := secureRead("Enter password: ")
if err != nil {
Expand Down

0 comments on commit 69a2138

Please sign in to comment.