Apply suggestions from code review

Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
Kalin Kiesling 2022-03-23 09:53:50 -05:00 committed by GitHub
parent 3f2d85cad3
commit 4f93bf22f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -35,7 +35,8 @@ option(OPENMC_USE_LIBMESH "Enable support for libMesh unstructured mesh tall
# Set build configuration to Release if not set
#===============================================================================
if (NOT CMAKE_BUILD_TYPE)
if(NOT CMAKE_BUILD_TYPE)
message(STATUS "No build type selected, defaulting to RelWithDebInfo")
set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build" FORCE)
endif()

View file

@ -352,7 +352,7 @@ OPENMC_ENABLE_COVERAGE
Compile and link code instrumented for coverage analysis. This is typically
used in conjunction with gcov_. (Default: off)
To set any of these options (e.g. turning on profiling), the following form
To set any of these options (e.g., turning on profiling), the following form
should be used:
.. code-block:: sh