Skip to content

Commit d008283

Browse files
committed
Move mix tasks to lib/data
1 parent 244234a commit d008283

6 files changed

Lines changed: 4 additions & 4 deletions

guides/migration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ MyApp.Cldr.Time.to_string(~T[14:30:00])
185185

186186
# Localize
187187
iex> Localize.Time.to_string(~T[14:30:00])
188-
{:ok, "2:30:00 PM"}
188+
{:ok, "2:30:00\u202FPM"}
189189

190190
iex> Localize.Time.to_string(~T[14:30:00], format: :short)
191-
{:ok, "2:30 PM"}
191+
{:ok, "2:30\u202FPM"}
192192
```
193193

194194
### DateTimes
@@ -199,10 +199,10 @@ MyApp.Cldr.DateTime.to_string(~N[2025-07-10 14:30:00])
199199

200200
# Localize
201201
iex> Localize.DateTime.to_string(~N[2025-07-10 14:30:00])
202-
{:ok, "Jul 10, 2025, 2:30:00 PM"}
202+
{:ok, "Jul 10, 2025, 2:30:00\u202FPM"}
203203

204204
iex> Localize.DateTime.to_string(~N[2025-07-10 14:30:00], format: :short)
205-
{:ok, "7/10/25, 2:30 PM"}
205+
{:ok, "7/10/25, 2:30\u202FPM"}
206206
```
207207

208208
### Units
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)