From 25c927e79bb77633a70630981a8dff0b447381d5 Mon Sep 17 00:00:00 2001 From: vin-m <63884487+vin-m@users.noreply.github.com> Date: Mon, 7 Mar 2022 00:12:25 -0500 Subject: [PATCH] fix(curriculum): clarify unix value must be of type number (Timestamp Microservice) (#45341) --- .../timestamp-microservice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/timestamp-microservice.md b/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/timestamp-microservice.md index 3e27c39463..db3026fc64 100644 --- a/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/timestamp-microservice.md +++ b/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/timestamp-microservice.md @@ -30,7 +30,7 @@ You should provide your own project, not the example URL. }; ``` -A request to `/api/:date?` with a valid date should return a JSON object with a `unix` key that is a Unix timestamp of the input date in milliseconds +A request to `/api/:date?` with a valid date should return a JSON object with a `unix` key that is a Unix timestamp of the input date in milliseconds (as type Number) ```js (getUserInput) =>