Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ssadel authored May 18, 2024
1 parent 68ae9b7 commit f6a48dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ let value: String = "123456"
try? KVKeychain.set(value, forKey: key)

// Get value
try? KVKeychain.getValue(forKey: key) // 123456
guard let value: String = try? KVKeychain.getValue(forKey: key) else { return }

// Update value
let newValue: String = "654321"
Expand Down

0 comments on commit f6a48dd

Please sign in to comment.