From aef5b1a05c244fa6b0e7e8a41755dc5cc5e6c56d Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 15 Apr 2022 21:08:09 +0300 Subject: [PATCH] ci: fix `./v check-md -hide-warnings .` --- vlib/crypto/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vlib/crypto/README.md b/vlib/crypto/README.md index e5835019fe..c2e161f3bf 100644 --- a/vlib/crypto/README.md +++ b/vlib/crypto/README.md @@ -31,12 +31,12 @@ fn main() { cipher := aes.new_cipher(key) println('performing encryption') - mut encrypted := []byte{len: aes.block_size} + mut encrypted := []u8{len: aes.block_size} cipher.encrypt(mut encrypted, data) println(encrypted) println('performing decryption') - mut decrypted := []byte{len: aes.block_size} + mut decrypted := []u8{len: aes.block_size} cipher.decrypt(mut decrypted, encrypted) println(decrypted)