Skip to content

Commit b33e45f

Browse files
Run pre-commit hooks on all files
1 parent d5548d9 commit b33e45f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ add_custom_target(
1212
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:${LIB_NAME}> ${PYTHON_LIB_DIR}
1313
DEPENDS ${LIB_NAME}
1414
COMMENT "Copying library to Python wrapper directory"
15-
)
15+
)

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ This section shows a typical project structure for a primary (i.e., non-wrapper)
113113
repository. For details about wrapper repositories, refer to their own README files.
114114

115115
```bash
116-
docs/
116+
docs/
117117
CMakeLists.txt # Doxygen configuration
118118
extern/
119119
... # External Git submodules/dependencies
120-
include/
120+
include/
121121
<PackageNamespace>/ # Include namespace folder, e.g. "ITS.Propagation.ITM"
122122
<HeaderFiles>.h # Library header files go here, e.g. "ITM.h" and "ErrorCodes.h"
123123
src/
@@ -190,11 +190,11 @@ and the GitHub action successfully generates the documentation site. Below is an
190190
example showing the expected documentation formats.
191191

192192
```cpp
193-
constexpr double = PI 3.1415; /**< Inline format, e.g. for constants or struct members */
193+
constexpr double = PI 3.1415; /**< Inline format, e.g. for constants */
194194

195195
/*******************************************************************************
196196
* This is a brief description of the function.
197-
*
197+
*
198198
* This is an optional, longer description of the function. It can include
199199
* LaTeX formatting, for example: this function doubles its input @f$ x @f$ and
200200
* returns a value @f$ y @f$ with @f$ y = 2x @f$.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ instead of `release64`.
6464

6565
```cmd
6666
# From the cloned repository:
67-
67+
6868
cmake --preset release64 -DBUILD_DOCS=OFF -DRUN_TESTS=OFF
6969
cmake --build --preset release64
7070
```

0 commit comments

Comments
 (0)