Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
kazimuth committed Jan 15, 2025
1 parent e7224ae commit 1256125
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions crates/bindings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,7 @@ maintenance tasks. See [Scheduled Reducers](macro@crate::reducer#scheduled-reduc
[macro library]: https://github.com/clockworklabs/SpacetimeDB/tree/master/crates/bindings-macro
[module library]: https://github.com/clockworklabs/SpacetimeDB/tree/master/crates/lib
[demo]: /#demo
[client]: https://spacetimedb.com/docs/#client
[clients]: https://spacetimedb.com/docs/#client
[client SDK documentation]: https://spacetimedb.com/docs/#client
[host]: https://spacetimedb.com/docs/#host
4 changes: 2 additions & 2 deletions crates/bindings/src/client_visibility_filter.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/// A row-level security filter,
/// which can be registered using the [`crate::client_visibility_filter`] attribute.
/// which can be registered using the [`macro@crate::client_visibility_filter`] attribute.
#[non_exhaustive]
pub enum Filter {
/// A SQL query. Rows that match this query will be made visible to clients.
Expand All @@ -11,7 +11,7 @@ pub enum Filter {
///
/// SQL queries are not checked for syntactic or semantic validity
/// until they are processed by the SpacetimeDB host.
/// This means that errors in queries used as [`crate::client_visibility_filter`] rules
/// This means that errors in queries used as [`macro@crate::client_visibility_filter`] rules
/// will be reported during `spacetime publish`, not at compile time.
Sql(&'static str),
}
Expand Down

0 comments on commit 1256125

Please sign in to comment.