diff --git a/src/components/Fortran/Fortran_Data_Types.vue b/src/components/Fortran/Fortran_Data_Types.vue
index 5be33dc..9e6b1cd 100644
--- a/src/components/Fortran/Fortran_Data_Types.vue
+++ b/src/components/Fortran/Fortran_Data_Types.vue
@@ -213,8 +213,11 @@ end program hello
logical is a boolean. It's either true or false. But a funny thing with the logical type in
Fortran, compared to other languages, is that you can define the size of it. The logical type supports the
- kind(n) modifier.
+ kind(n) modifier.
+ A good reason for the different sized logical, is optimization. Some systems handles larger object better than smaller,
+ or some systems handles smaller objects better. It all depends on the architecture.
+
main.f90