From 3e11399c06448a9f3cdac7dc638ec8a9827f9d51 Mon Sep 17 00:00:00 2001 From: Manu Drijvers Date: Mon, 31 Jul 2023 13:37:11 +0200 Subject: [PATCH] fix typo in qrcode readme --- rust/qrcode/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/qrcode/README.md b/rust/qrcode/README.md index 266d9c0ee..0d3a991d2 100644 --- a/rust/qrcode/README.md +++ b/rust/qrcode/README.md @@ -56,7 +56,7 @@ When the user clicks the "Generate!" button, a JavaScript handler initiates a ca The heavy-lifting of this call is managed by `candid`, `js-agent`, and `dfx`, which automatically generates a JavaScript object from the backend's Candid interface. That object contains `async` functions for each of the backend's endpoints, and the button handler uses them to make the calls. -The backend, written in Rust, uses the `qrcode-generator`` and `image`` crates to create a QR code from user text. +The backend, written in Rust, uses the `qrcode-generator` and `image` crates to create a QR code from user text. It also performs some image processing, to add the Internet Computer logo and a color gradient to the final result. Note the amount of computational work may be significant for large images.