summaryrefslogtreecommitdiffstats
path: root/generator/src/structs.rs
diff options
context:
space:
mode:
authorCyborus <cyborus@noreply.codeberg.org>2024-07-30 21:49:35 +0200
committerCyborus <cyborus@noreply.codeberg.org>2024-07-30 21:49:35 +0200
commit127e4e6a9ccea0793e760bbcb604ca3298acefef (patch)
tree7c894d755981ec523e9613c8b76c405b35b6de29 /generator/src/structs.rs
parentMerge pull request 'bump version to 0.4.0' (#70) from bump-0.4.0 into main (diff)
parentdocs: replace instances of "gitea" with "Forgejo" (diff)
downloadforgejo-api-127e4e6a9ccea0793e760bbcb604ca3298acefef.tar.xz
forgejo-api-127e4e6a9ccea0793e760bbcb604ca3298acefef.zip
Merge pull request 'replace instances of "gitea" with "Forgejo"' (#71) from replace-gitea into mainv0.4.0
Reviewed-on: https://codeberg.org/Cyborus/forgejo-api/pulls/71
Diffstat (limited to 'generator/src/structs.rs')
-rw-r--r--generator/src/structs.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/generator/src/structs.rs b/generator/src/structs.rs
index 4bd4418..4543f5c 100644
--- a/generator/src/structs.rs
+++ b/generator/src/structs.rs
@@ -104,6 +104,7 @@ pub fn create_struct_for_definition(
}
if let MaybeRef::Value { value } = &prop_schema {
if let Some(desc) = &value.description {
+ let desc = desc.replace("gitea", "Forgejo").replace("Gitea", "Forgejo");
for line in desc.lines() {
fields.push_str("/// ");
fields.push_str(line);
@@ -199,6 +200,7 @@ fn create_struct_docs(schema: &Schema) -> eyre::Result<String> {
fn create_struct_docs_str(description: Option<&str>) -> eyre::Result<String> {
let doc = match description {
Some(desc) => {
+ let desc = desc.replace("gitea", "Forgejo").replace("Gitea", "Forgejo");
let mut out = String::new();
for line in desc.lines() {
out.push_str("/// ");