From e3a378cc6e63b0031c80cefc242ef837b75b5086 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Fri, 23 Jan 2026 10:51:12 +0300 Subject: [PATCH] Updated README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d80747..ab83913 100644 --- a/README.md +++ b/README.md @@ -107,9 +107,9 @@ Knob::new(&mut value, 0.0, 1.0, KnobStyle::Wiper) #### Logarithmic Knobs ```rust -// Display as percentage +// Enable logarithmic scaling Knob::new(&mut value, 0.0, 1.0, KnobStyle::Wiper) - .with_logarithmic_scaling(true); + .with_logarithmic_scaling(); ``` ## Running demo app