From ea7d599bad4763eabcf8052380d7448deb81f74f Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Fri, 11 Feb 2022 11:56:16 +0100 Subject: [PATCH] chore: add missing comma --- website/docs/how-to/how-to-capture-impression-data.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/how-to/how-to-capture-impression-data.mdx b/website/docs/how-to/how-to-capture-impression-data.mdx index 03a1bb85c1..6a16ef2e14 100644 --- a/website/docs/how-to/how-to-capture-impression-data.mdx +++ b/website/docs/how-to/how-to-capture-impression-data.mdx @@ -19,7 +19,7 @@ We will assume that you have the necessary details for your third-party service: - **where to send the data to**. We'll refer to this in the code samples below as **``**. - **what format the data needs to be in**. This will determine how you transform the event data before you send it. -In addition you'll need to have a toggle to record impression data for and an [Unleash client SDK](../sdks/index.md) that supports impression data. This guide will use the [JavaScript proxy SDK](../sdks/proxy-javascript.md). +In addition, you'll need to have a toggle to record impression data for and an [Unleash client SDK](../sdks/index.md) that supports impression data. This guide will use the [JavaScript proxy SDK](../sdks/proxy-javascript.md). When you have those things sorted, follow the below steps.