From 4045bcddf3752d5b2d8efac6ce132c79ff53c7e7 Mon Sep 17 00:00:00 2001 From: Krishna Vedala <7001608+kvedala@users.noreply.github.com> Date: Wed, 1 Jul 2020 13:05:52 -0400 Subject: [PATCH] verb correction --- sorting/insertion_sort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/insertion_sort.cpp b/sorting/insertion_sort.cpp index efa60e584..beb828005 100644 --- a/sorting/insertion_sort.cpp +++ b/sorting/insertion_sort.cpp @@ -34,7 +34,7 @@ * we place it at the correct sorted position thus the array in this iteration * becomes * \f{bmatrix}{2 &3 &4 &5 &1\f} - * 4. we does not do anything with 5 and move on to the next iteration and + * 4. we do not do anything with 5 and move on to the next iteration and * select 1 which is misplaced and place it at correct position. Thus, we have * \f{bmatrix}{1 &2 &3 &4 &5\f} */