We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d88289 commit f463d6eCopy full SHA for f463d6e
1 file changed
crates/vespera_macro/src/openapi_generator.rs
@@ -131,11 +131,7 @@ pub fn generate_openapi_doc_with_metadata(
131
route_meta.error_status.as_deref(),
132
route_meta.tags.as_deref(),
133
);
134
-
135
- // Set description from metadata
136
- if let Some(desc) = &route_meta.description {
137
- operation.description = Some(desc.clone());
138
- }
+ operation.description = route_meta.description.clone();
139
140
// Get or create PathItem
141
let path_item = paths
0 commit comments