From 8529e0da3d8529d3329e88bf8349a3684aabe238 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard <62331820+DanielHougaard@users.noreply.github.com> Date: Sat, 6 Jan 2024 03:41:31 +0400 Subject: [PATCH] Update developing.mdx --- docs/contributing/sdk/developing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/sdk/developing.mdx b/docs/contributing/sdk/developing.mdx index 9bd9e9dfd..9bc9ea245 100644 --- a/docs/contributing/sdk/developing.mdx +++ b/docs/contributing/sdk/developing.mdx @@ -135,7 +135,7 @@ pub struct CreateSecretResponse { You will _only_ have to define outputs in our schema generator, then QuickType will take care of the rest behind the scenes. You can find the Rust crate that takes care of type generation here: `crates/sdk-schemas/src/main.rs`. -Simply add the output _(also called response)_, to the write_schema_for_response! macro. This will let QuickType know that it should generate types for the given structs. The main function will look something like this: +Simply add the output _(also called response)_, to the `write_schema_for_response!` macro. This will let QuickType know that it should generate types for the given structs. The main function will look something like this: ```rust fn main() -> Result<()> {