From af130671970801a9ee8e9320ff504e389e0b9793 Mon Sep 17 00:00:00 2001 From: Kelly Downes Date: Wed, 14 Nov 2018 07:19:05 -0800 Subject: [PATCH] Fixed Typo: Added missing indefinite article 'a' (#25605) --- .../intermediate-algorithm-scripting/binary-agents/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md index b549c560de..8f1594a22d 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/binary-agents/index.md @@ -7,7 +7,7 @@ title: Binary Agents ## Problem Explanation: -This problem is very straight forward, you will get a string that will represent a sentence in binary code, and you need to translate that into words. There is not direct way to do this so you will have to translate twice. +This problem is very straight forward, you will get a string that will represent a sentence in binary code, and you need to translate that into words. There is not a direct way to do this so you will have to translate twice. ### Relevant Links