From 54106352966f32414a5c96aa499d41d05c43ad35 Mon Sep 17 00:00:00 2001 From: al-munazzim Date: Tue, 10 Feb 2026 20:38:52 +0000 Subject: [PATCH] docs: fix grammar and update library name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 'splitted' → 'split' in development.md (split is already past tense) - 'LittlevGL' → 'LVGL' in README.md (project renamed years ago, lvgl.io still correct) --- README.md | 2 +- docs/development.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 43cde9d6..6f31d64a 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ For secret storage we support agnostic mode (wallet forgets all secrets when tur Our main focus is multisignature setup with other hardware wallets, but wallet can also work as a single signer. We try to make it compatible with Bitcoin Core where we can - PSBT for unsigned transactions, wallet descriptors for importing/exporting multisig wallets. To communicate with Bitcoin Core easier we are also working on [Specter Desktop app](https://github.com/cryptoadvance/specter-desktop) - a small python flask server talking to your Bitcoin Core node. -Most of the firmware is written in MicroPython which makes the code easy to audit and change. We use [secp256k1](https://github.com/bitcoin-core/secp256k1) library from Bitcoin Core for elliptic curve calculations and [LittlevGL](https://lvgl.io/) library for GUI. +Most of the firmware is written in MicroPython which makes the code easy to audit and change. We use [secp256k1](https://github.com/bitcoin-core/secp256k1) library from Bitcoin Core for elliptic curve calculations and [LVGL](https://lvgl.io/) library for GUI. ## DISCLAIMER diff --git a/docs/development.md b/docs/development.md index 2f871e4c..0b493574 100644 --- a/docs/development.md +++ b/docs/development.md @@ -32,7 +32,7 @@ All `print()` statements will appear in the terminal output. You can keep both t ## Writing a simple app -Specter can be extended with custom apps. Most of the functionality is already splitted into apps, like `WalletManager` to manage your wallets, `MessageApp` to sign bitcoin messages, `XpubApp` to show master public keys etc. +Specter can be extended with custom apps. Most of the functionality is already split into apps, like `WalletManager` to manage your wallets, `MessageApp` to sign bitcoin messages, `XpubApp` to show master public keys etc. Check out the [apps](../src/apps) folder to understand how they work.