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