Skip to content

Commit 0361547

Browse files
authored
1 parent 9a54a66 commit 0361547

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.codespellrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[codespell]
2-
skip = *.drawio,*.svg
2+
skip = *.drawio,*.svg,.github/iwyu.imp
33
ignore-words = .codespell-ignore

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ There are many coding guidelines which could be selected by the whole community,
1010
- member functions: camelCase
1111
- members: m_snake_case
1212
- local variables: snake_case
13-
- constands, definitions: SCREAMING_SNAKE_CASE
13+
- constants, definitions: SCREAMING_SNAKE_CASE
1414
- base namespace: eicrecon
1515
- indent: 4 spaces
1616

src/algorithms/pid/MatchToRICHPID.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ namespace eicrecon {
105105
return false;
106106
}
107107

108-
// get averge momentum direction of the track's TrackPoints
108+
// get average momentum direction of the track's TrackPoints
109109
decltype(edm4eic::TrackPoint::momentum) in_track_p{0.0, 0.0, 0.0};
110110
for (const auto& in_track_point : in_track.getPoints())
111111
in_track_p = in_track_p + ( in_track_point.momentum / in_track.points_size() );

0 commit comments

Comments
 (0)