diff --git a/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md b/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md index 6827c27..731a0b8 100644 --- a/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md +++ b/Grade 10/Computer Science/ICS4U1/Sorting Methods/Insertion Sort.md @@ -18,7 +18,7 @@ - Duplicate the larger element in to one ahead of its current index each time the key is tested - By looping this, it makes space and inserts the key into that correct position -## Pseudo0code +## Pseudo code ``` for x = 1 : n key = list[x]