Added missing link for #[server] macro (#2437)

* Added missing link for #[server] macro

Added missing link for #[server] macro

* Removed spurious entry
This commit is contained in:
Ratul 2024-03-21 02:54:54 +05:30 committed by GitHub
parent 841d7a690a
commit d1560f9e1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 8 deletions

View file

@ -1,7 +0,0 @@
CREATE TABLE IF NOT EXISTS todos
(
id INTEGER NOT NULL PRIMARY KEY,
title VARCHAR,
completed BOOLEAN
);

View file

@ -28,7 +28,7 @@
//!
//! ### `#[server]`
//!
//! The [`#[server]`][server] macro allows you to annotate a function to
//! The [`#[server]`](../leptos/attr.server.html) macro allows you to annotate a function to
//! indicate that it should only run on the server (i.e., when you have an `ssr` feature in your
//! crate that is enabled).
//!