Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
CikeQiu authored Jul 27, 2017
1 parent ac0ab7d commit 338ff34
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ To run the example project, clone the repo, and run `pod install` from the Examp

```Swift
do {
let language: CKMnemonicLanguageType = .chinese
let mnemonic = try CKMnemonic.generateMnemonic(strength: 128, language: language)
print(mnemonic)
let seed = try CKMnemonic.deterministicSeedString(from: mnemonic, passphrase: "Test", language: language)
print(seed)
let language: CKMnemonicLanguageType = .chinese
let mnemonic = try CKMnemonic.generateMnemonic(strength: 128, language: language)
print(mnemonic)
let seed = try CKMnemonic.deterministicSeedString(from: mnemonic, passphrase: "Test", language: language)
print(seed)
} catch {
print(error)
print(error)
}
```

Expand Down

0 comments on commit 338ff34

Please sign in to comment.