Skip to content

Commit bb681d1

Browse files
committed
Chore: Fixes TS errors. (Changed " to ')
1 parent ba271d2 commit bb681d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lesson_11/arrays_ts/src/lesson11.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ export function findWordsContaining(words: string[], x: string): number[] {
4141

4242
const nums: number[] = [1, 2 , 3, 4]; //Array of numbers based on test case
4343
const result: number[] = getConcatenation(nums);
44-
console.log(result.join(" "))//Prints the test result out for the fet concatentaition method
44+
console.log(result.join(' '))//Prints the test result out for the fet concatentaition method
4545

4646

47-
const words: string[] = ["leet", "code", "hello", "world"]; //Array of strings based on test case
47+
const words: string[] = ['leet', 'code', 'hello', 'world']; //Array of strings based on test case
4848
const x: string = 'e'; //Calls for a specific char
4949
console.log(findWordsContaining(words, x));
5050

0 commit comments

Comments
 (0)