From c933465c40e54db06bdf144d656ffab062b35de6 Mon Sep 17 00:00:00 2001 From: guergabo <65991626+guergabo@users.noreply.github.com> Date: Tue, 5 Dec 2023 12:28:07 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 880f017..53f930c 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ app.post("/purchase", async (req, res) => { const user = { id: 1, name: "John" }; const song = { id: 1, title: "Song 1" }; - // Generate unique ID for purchase execution. This is used to track the execution. + // Create unique ID for purchase execution. This is used to track the execution. // Typically, this would be an external ID from your incoming request. const purchaseId = `purchase-${user.id}-${song.id}`