Correct mixed up comments

Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/library/aes.c b/library/aes.c
index 4f7c888..6e1bcd2 100644
--- a/library/aes.c
+++ b/library/aes.c
@@ -1140,14 +1140,14 @@
         size_t i;
         unsigned char *prev_output = output - 16;
 
-        /* Copy the remainder of the input for this final round. */
+        /* Copy ciphertext bytes from the previous block to our output for each
+         * byte of ciphertext we won't steal. */
         for( i = 0; i < leftover; i++ )
         {
             output[i] = prev_output[i];
         }
 
-        /* Copy ciphertext bytes from the previous block to our output for each
-         * byte of ciphertext we won't steal. */
+        /* Copy the remainder of the input for this final round. */
         mbedtls_xor( tmp, input, t, leftover );
 
         /* Copy ciphertext bytes from the previous block for input in this