From 87dbd569803c8cf8e79d30be2bbe5234da8b189b Mon Sep 17 00:00:00 2001 From: Peleus <245629560@qq.com> Date: Tue, 7 Nov 2023 12:01:35 +0800 Subject: [PATCH] Add description about Closest and Farthest methods --- README.cn.md | 4 ++-- README.jp.md | 4 ++-- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.cn.md b/README.cn.md index 6b3860e2..c6ca938c 100644 --- a/README.cn.md +++ b/README.cn.md @@ -248,9 +248,9 @@ c1 := carbon.Parse("2023-03-28") c2 := carbon.Parse("2023-04-16") // 返回最近的 Carbon 实例 -c.Closest(c1, c2).ToDateString() // 2023-03-28 +c.Closest(c1, c2) // c1 // 返回最远的 Carbon 实例 -c.Farthest(c1, c2).ToDateString() // 2023-04-16 +c.Farthest(c1, c2) // c2 ``` ##### 开始时间、结束时间 diff --git a/README.jp.md b/README.jp.md index c3a42667..cd2532b5 100644 --- a/README.jp.md +++ b/README.jp.md @@ -248,9 +248,9 @@ c1 := carbon.Parse("2023-03-28") c2 := carbon.Parse("2023-04-16") // 最近のCarbonインスタンスを返す -c.Closest(c1, c2).ToDateString() // 2023-03-28 +c.Closest(c1, c2) // c1 // 最も遠いCarbonインスタンスを返す -c.Farthest(c1, c2).ToDateString() // 2023-04-16 +c.Farthest(c1, c2) // c2 ``` ##### 始まりと終わり diff --git a/README.md b/README.md index 0d59fd33..2f7e5fcf 100644 --- a/README.md +++ b/README.md @@ -246,9 +246,9 @@ c1 := carbon.Parse("2023-03-28") c2 := carbon.Parse("2023-04-16") // Return the closest Carbon instance -c.Closest(c1, c2).ToDateString() // 2023-03-28 +c.Closest(c1, c2) // c1 // Return the farthest Carbon instance -c.Farthest(c1, c2).ToDateString() // 2023-04-16 +c.Farthest(c1, c2) // c2 ``` ##### Start and end