Skip to content

Commit

Permalink
Merge pull request #107 from grahamc/master
Browse files Browse the repository at this point in the history
Issue: make body an Option
  • Loading branch information
softprops committed Feb 3, 2018
2 parents 1fb80ff + 451cf17 commit 029da31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/issues/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ pub struct Issue {
pub number: u64,
pub state: String,
pub title: String,
pub body: String,
pub body: Option<String>,
pub user: User,
pub labels: Vec<Label>,
pub assignee: Option<User>,
Expand Down

0 comments on commit 029da31

Please sign in to comment.