aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-02-22 09:51:56 -0500
committerJack Lloyd <[email protected]>2018-02-22 09:51:56 -0500
commit901eb327fb9989abe7b8327b2f691bff7221cea6 (patch)
tree7cf3f0107a1f95a5e6fb1b9ba298c3f48c09ae20 /doc
parent061182a46f8b9e42808d57ec7bbafc13db7cf809 (diff)
Fix missing semicolon in pubkey example [ci skip]
Diffstat (limited to 'doc')
-rw-r--r--doc/manual/pubkey.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/pubkey.rst b/doc/manual/pubkey.rst
index f6bbca412..17ebea231 100644
--- a/doc/manual/pubkey.rst
+++ b/doc/manual/pubkey.rst
@@ -722,7 +722,7 @@ applies the key derivation function KDF2(SHA-256) with 256 bit output length to
int main()
{
- Botan::AutoSeeded_RNG rng
+ Botan::AutoSeeded_RNG rng;
// ec domain and
Botan::EC_Group domain("secp521r1");
std::string kdf = "KDF2(SHA-256)";