From 28d0da15df3d3486c4281247cb612b419d0543bc Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sun, 29 Dec 2019 23:16:35 +0800 Subject: [PATCH] update comments --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index dc3cf17..f909e68 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -124,13 +124,13 @@ impl <'a> DingTalkMessage<'a> { self } - // At all + /// At all pub fn at_all(mut self) -> Self { self.at_all = true; self } - // At mobiles + /// At mobiles pub fn at_mobiles(mut self, mobiles: &Vec) -> Self { for m in mobiles { self.at_mobiles.push(m.clone());