From 6c8629794967e4a39b0cf0180d0e24af3b9ead4c Mon Sep 17 00:00:00 2001 From: Abhishek Krishna Date: Tue, 12 May 2026 07:50:44 +0530 Subject: [PATCH] docs(time): remove trailing comma in convert_time example response The example response object for the convert_time tool in src/time/README.md had a trailing comma after the last key ("time_difference"). Trailing commas are not valid in standard JSON, so anyone copy-pasting the example into a strict JSON parser (or using it in a test fixture) hits a parse error. The trailing comma was left over when a now-removed 'date_changed' field was deleted from the example; the comma after the preceding key was never cleaned up. This is a docs-only, 1-line change. --- src/time/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/time/README.md b/src/time/README.md index 51107f51de..633a5b46dd 100644 --- a/src/time/README.md +++ b/src/time/README.md @@ -244,7 +244,7 @@ Response: "datetime": "2024-01-01T12:30:00+09:00", "is_dst": false }, - "time_difference": "+13.0h", + "time_difference": "+13.0h" } ```