From f3428655dd96e874b91f50012da5362323f3c101 Mon Sep 17 00:00:00 2001 From: afreeland Date: Sat, 24 Feb 2024 12:22:34 -0500 Subject: [PATCH] Refine enabling feature --- book/src/debugging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/debugging.md b/book/src/debugging.md index e6ba43a3..40ec9053 100644 --- a/book/src/debugging.md +++ b/book/src/debugging.md @@ -76,10 +76,10 @@ We also can try to identify how the token `fast` works by looking at `9`, first, ### Enabling -To enable this debugging output you can use the `debug` feature. +To enable debugging output you can define a `debug` feature in your `Cargo.toml` file, like this: -In your `Cargo.toml` you can ``` +// Cargo.toml [dependencies] logos = { version = "1.2.3", features = ["debug"] } ```