diff --git a/docs.it4i/cs/amd.md b/docs.it4i/cs/amd.md
index b4d4b5f5322e72185f40204015800833665e4443..dda29f379a9b6798f05e38b7c0b515ea24673d83 100644
--- a/docs.it4i/cs/amd.md
+++ b/docs.it4i/cs/amd.md
@@ -10,7 +10,7 @@ salloc -N 1 -c 64 -A PROJECT-ID -p p03-amd --gres=gpu:4 --time=08:00:00
 where:
 
 - -N 1 means allocating one server,
-- -c 64 means allocation 64 cores, 
+- -c 64 means allocation 64 cores,
 - -A is your project,
 - -p p03-amd is AMD partition,
 - --gres=gpu:4 means allcating all 4 GPUs of the node,
@@ -234,7 +234,7 @@ int main()
     for(int i = 0; i < width; i++)
         printf("%6.3f  ", h_x[i]);
     printf("\n");
-   
+
     float * h_y;
     hipHostMalloc(&h_y, height * sizeof(*h_y));
     for(int i = 0; i < height; i++)