From a622f044ef32ee6b5152261a46c5250398cb0194 Mon Sep 17 00:00:00 2001 From: df51d <122315498+df51d@users.noreply.github.com> Date: Sun, 12 Mar 2023 03:15:47 +0100 Subject: [PATCH] fix(docs): example of `sqlx_macros_unstable` in config.toml --- src/macros/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros/mod.rs b/src/macros/mod.rs index ed8e82ef..379fe41e 100644 --- a/src/macros/mod.rs +++ b/src/macros/mod.rs @@ -773,7 +773,7 @@ macro_rules! query_file_scalar_unchecked ( /// You can also set it in `build.rustflags` in `.cargo/config.toml`: /// ```toml,ignore /// [build] -/// rustflags = ["--cfg sqlx_macros_unstable"] +/// rustflags = ["--cfg=sqlx_macros_unstable"] /// ``` /// /// And then continue building and running your project normally.