Browse Source

fix: Update server function docs link (#1489)

Marc Espín 1 year ago
parent
commit
517a43d765
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/server-macro/src/lib.rs

+ 1 - 1
packages/server-macro/src/lib.rs

@@ -8,7 +8,7 @@ use syn::{
     Ident, ItemFn, Token,
     Ident, ItemFn, Token,
 };
 };
 
 
-/// Declares that a function is a [server function](dioxus_fullstack). This means that
+/// Declares that a function is a [server function](https://dioxuslabs.com/learn/0.4/reference/fullstack/server_functions). This means that
 /// its body will only run on the server, i.e., when the `ssr` feature is enabled.
 /// its body will only run on the server, i.e., when the `ssr` feature is enabled.
 ///
 ///
 /// If you call a server function from the client (i.e., when the `csr` or `hydrate` features
 /// If you call a server function from the client (i.e., when the `csr` or `hydrate` features