Correction to swap procedure design documentation

The swap procedure as documented doesn't match the code, and it would
loose the contents of slot1[index] as it's erased before it is copied
anywhere. Also, add the missing word 'to'.

Signed-off-by: Ryan C Johnson <ryan.johnson@flex.com>
diff --git a/docs/design.md b/docs/design.md
index 69292c6..7c5b9ca 100644
--- a/docs/design.md
+++ b/docs/design.md
@@ -408,7 +408,7 @@
     2. Iterate the list of sector indices in descending order (i.e., starting
        with the greatest index); current element = "index".
         b. Erase scratch area.
-        c. Copy slot0[index] to scratch area.
+        c. Copy slot1[index] to scratch area.
             - If these are the last sectors (i.e., first swap being perfomed),
               copy the full sector *except* the image trailer.
             - Else, copy entire sector contents.
@@ -422,7 +422,7 @@
         g. Write updated swap status (ii).
 
         h. Erase slot0[index].
-        i. Copy scratch area slot0[index].
+        i. Copy scratch area to slot0[index].
             - If these are the last sectors (i.e., first swap being perfomed),
               copy the full sector *except* the image trailer.
             - Else, copy entire sector contents.