From: Wolfgang Bangerth Date: Mon, 28 May 2018 07:24:31 +0000 (+0800) Subject: Uniformly use capital letters at the top of comments. X-Git-Tag: v9.1.0-rc1~1089^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=64df1df20c0cbf6936c4ee85ea4c4f748858b2d7;p=dealii.git Uniformly use capital letters at the top of comments. --- diff --git a/contrib/utilities/indent b/contrib/utilities/indent index d7778cb825..20dcab3cb9 100755 --- a/contrib/utilities/indent +++ b/contrib/utilities/indent @@ -61,16 +61,15 @@ if [ "${CLANG_FORMAT_MAJOR_VERSION}" -ne 6 ] || [ "${CLANG_FORMAT_MINOR_VERSION} fi # -# collect all header and source files and process them in batches of 50 +# Collect all header and source files and process them in batches of 50 # files with up to 10 in parallel # - find tests include source examples \ \( -name '*.cc' -o -name '*.h' -o -name '*.cu' -o -name '*.cuh' \) -print0 | xargs -0 -n 50 -P 10 clang-format -i # -# use the same process to set file permissions for all source files +# Use the same process to set file permissions for all source files. # find tests include source examples \ @@ -78,7 +77,7 @@ find tests include source examples \ xargs -0 -n 50 -P 10 chmod 644 # -# convert dos formatted files to unix file format by stripping out +# Convert DOS formatted files to unix file format by stripping out # carriage returns (15=0x0D): # @@ -96,7 +95,7 @@ find tests include source examples \ xargs -0 -n 1 -P 10 -I {} bash -c 'dos_to_unix "$@"' _ {} # -# format .inst.in files. We need to replace \{ and \} by a sentinel because +# Format .inst.in files. We need to replace \{ and \} by a sentinel because # clang-format happily strips away the backslash. Further, there is a minor # caveat: clang-format automatically renames a comment after a closing # bracket for a namespace to "} // namespace FooBar". Thus use "namespace"