From 7af753d0ccdd5ac28398d31e48a0cc26da92d6ec Mon Sep 17 00:00:00 2001 From: Carter Himmel Date: Wed, 27 Sep 2023 20:36:26 -0600 Subject: [PATCH] fix(book): copy paste fail --- book/src/delete_queries/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/delete_queries/README.md b/book/src/delete_queries/README.md index a9b8991..028a56c 100644 --- a/book/src/delete_queries/README.md +++ b/book/src/delete_queries/README.md @@ -1,7 +1,7 @@ # Delete Queries Writing delete queries, which is pretty much the same as [Select Queries](../select_queries/index.html), is incredibly easy with the `delete_query` macro. -Simply create a struct with the fields you want to select, and annotate it with the `#[select_query]` macro. +Simply create a struct with the fields you want to select, and annotate it with the `#[delete_query]` macro. ```rust #use scyllax::prelude::*;