diff --git a/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md b/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md
index 2db7b182..21e35242 100644
--- a/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md
+++ b/documentation/hdf4-docs/how_to_change_hdf4_make_build_options.md
@@ -31,7 +31,7 @@ There are numerous CMake options available to users, many of which correspond di
| Option | Configure | Cmake |
| --- | --- | --- |
| Build shared libraries | --enable-shared | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DBUILD_SHARED_LIBS:BOOL=ON")` |
-| Build HDF4 Fortran library | --enable-fortran | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_BUILD_FORTRAN:BOOL=ON") |
+| Build HDF4 Fortran library | --enable-fortran | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_BUILD_FORTRAN:BOOL=ON")` |
| Disable ZLIB filter | --with-zlib | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_ENABLE_Z_LIB_SUPPORT:BOOL=OFF")` |
| Disable SZIP filter | --with-szlib | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_ENABLE_SZIP_SUPPORT:BOOL=OFF")`
`set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_ENABLE_SZIP_ENCODING:BOOL=OFF")` |
| Build HDF4 Java library | --enable-java | `set(ADD_BUILD_OPTIONS "${ADD_BUILD_OPTIONS} -DHDF4_BUILD_JAVA:BOOL=ON")`
Also specify the location of Java in the JAVA_HOME environment variable. |