diff --git a/examples/changelog/src/changelog.rs b/examples/changelog/src/changelog.rs index 4aeb9574..275afec7 100644 --- a/examples/changelog/src/changelog.rs +++ b/examples/changelog/src/changelog.rs @@ -306,7 +306,7 @@ impl Contribution { pub struct PullRequest { pub id: u64, pub title: String, - pub description: String, + pub description: Option, pub labels: Vec, pub author: String, } @@ -334,7 +334,7 @@ impl PullRequest { #[derive(Deserialize)] struct Schema { title: String, - body: String, + body: Option, user: User, labels: Vec