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 38d8bd7 commit 3a76802Copy full SHA for 3a76802
compiler-rs/clients_schema_to_openapi/src/paths.rs
@@ -314,6 +314,9 @@ fn get_path_parameters(template: &str) -> Vec<&str> {
314
result
315
}
316
317
+// Splits the original endpoint description into OpenAPI summary and description, where summary
318
+// is the first sentence of the original description with no trailing `.`, and description contains
319
+// the remaining sentences, if there are any left.
320
fn split_summary_desc(desc: &str) -> SplitDesc{
321
let segmenter = SentenceSegmenter::new();
322
0 commit comments