@@ -287,12 +287,12 @@ impl<'octo> RepoHandler<'octo> {
287287 /// .branch("master")
288288 /// .commiter(CommitAuthor {
289289 /// name: "Octocat".to_string(),
290- /// email: "[email protected] ".to_string(), 290+ /// email: Some( "[email protected] ".to_string() ), 291291 /// date: None,
292292 /// })
293293 /// .author(CommitAuthor {
294294 /// name: "Ferris".to_string(),
295- /// email: "[email protected] ".to_string(), 295+ /// email: Some( "[email protected] ".to_string() ), 296296 /// date: None,
297297 /// })
298298 /// .send()
@@ -344,12 +344,12 @@ impl<'octo> RepoHandler<'octo> {
344344 /// .branch("master")
345345 /// .commiter(CommitAuthor {
346346 /// name: "Octocat".to_string(),
347- /// email: "[email protected] ".to_string(), 347+ /// email: Some( "[email protected] ".to_string() ), 348348 /// date: None,
349349 /// })
350350 /// .author(CommitAuthor {
351351 /// name: "Ferris".to_string(),
352- /// email: "[email protected] ".to_string(), 352+ /// email: Some( "[email protected] ".to_string() ), 353353 /// date: None,
354354 /// })
355355 /// .send()
@@ -391,12 +391,12 @@ impl<'octo> RepoHandler<'octo> {
391391 /// .branch("master")
392392 /// .commiter(CommitAuthor {
393393 /// name: "Octocat".to_string(),
394- /// email: "[email protected] ".to_string(), 394+ /// email: Some( "[email protected] ".to_string() ), 395395 /// date: None,
396396 /// })
397397 /// .author(CommitAuthor {
398398 /// name: "Ferris".to_string(),
399- /// email: "[email protected] ".to_string(), 399+ /// email: Some( "[email protected] ".to_string() ), 400400 /// date: None,
401401 /// })
402402 /// .send()
@@ -775,7 +775,7 @@ impl<'octo> RepoHandler<'octo> {
775775 /// .signature("signature")
776776 /// .author(CommitAuthor{
777777 /// name: "name".to_owned(),
778- /// email: "email".to_owned(),
778+ /// email: Some( "email".to_owned() ),
779779 /// date: None
780780 /// })
781781 /// .send()
0 commit comments