diff --git a/maca_trans_parser/src/feat_model.h b/maca_trans_parser/src/feat_model.h
index 4fa12d4a9f176e4fc3d4a56e4fb171d0feafefd4..6737331e2aa518f7787a11d20110f776f82f7ad1 100644
--- a/maca_trans_parser/src/feat_model.h
+++ b/maca_trans_parser/src/feat_model.h
@@ -10,7 +10,7 @@ typedef struct {
   int nbelem;
   feat_desc **array;
   int dim;
-    feat_lib *fl; // stores all simple features 
+  feat_lib *fl; // stores all simple features 
 } feat_model;
 
 #include "config.h"
diff --git a/maca_trans_parser/src/simple_decoder_parser_arc_eager.c b/maca_trans_parser/src/simple_decoder_parser_arc_eager.c
index e523e5fb0490589e8a464dbbd0588d9ee825781d..7c44a6b32fe89378c75722a610cbdece3a1905ba 100644
--- a/maca_trans_parser/src/simple_decoder_parser_arc_eager.c
+++ b/maca_trans_parser/src/simple_decoder_parser_arc_eager.c
@@ -156,7 +156,7 @@ void simple_decoder_parser_arc_eager(context *ctx)
       if(ctx->debug_mode) printf("force EOS\n");
     }
 
-    /* normal behavious, ask classifier what is the next movement to do and do it */
+    /* normal behaviour, ask classifier what is the next movement to do and do it */
     else{
       config2feat_vec_cff(ctx->features_model, c, ctx->d_perceptron_features, fv, LOOKUP_MODE);
       mvt_code = feature_table_argmax(fv, ft, &max);