Skip to content

Commit

Permalink
fix cargo rdme
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburniske committed Apr 14, 2024
1 parent a44e757 commit 1c45b29
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ A Query provides:


## The main entry points to using Queries are:
- `create_query` - **Recommended**: Creates a [`QueryScope`] which encapsulates `use_query` and other methods for managing queries.
- [`use_query`][crate::use_query::use_query()] - A query primitive for reading, caching, and refetching data.
- [`create_query`](create_query::create_query) - **Recommended**: Creates a [`QueryScope`] which encapsulates `use_query` and other methods for managing queries.
- [`use_query`][use_query::use_query] - A query primitive for reading, caching, and refetching data.

## Feature Flags
- `csr` Client-side rendering: Use queries on the client.
Expand Down
4 changes: 2 additions & 2 deletions query/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
//!
//!
//! ## The main entry points to using Queries are:
//! - [`create_query`](crate::create_query::create_query()) - **Recommended**: Creates a [`QueryScope`] which encapsulates `use_query` and other methods for managing queries.
//! - [`use_query`][crate::use_query::use_query()] - A query primitive for reading, caching, and refetching data.
//! - [`create_query`](create_query::create_query) - **Recommended**: Creates a [`QueryScope`] which encapsulates `use_query` and other methods for managing queries.
//! - [`use_query`][use_query::use_query] - A query primitive for reading, caching, and refetching data.
//!
//! ## Feature Flags
//! - `csr` Client-side rendering: Use queries on the client.
Expand Down

0 comments on commit 1c45b29

Please sign in to comment.