Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Andreas Stefl <[email protected]>
  • Loading branch information
benjaminhuth and andiwand authored Jan 17, 2025
1 parent 8040fd3 commit 3ca8ff1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class WhiteBoard {
const std::type_info& type() const override { return typeid(T); }
};

/// Store an holder on the white board and transfer ownership.
/// Store a holder on the white board.
///
/// @param name Non-empty identifier to store it under
/// @param holder The holder to store
Expand Down
2 changes: 1 addition & 1 deletion Examples/Framework/src/Framework/BufferedReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ BufferedReader::BufferedReader(const Config &config, Acts::Logging::Level level)
throw std::invalid_argument("No upstream reader provided!");
}

// Register write and read handles of the downstream reader
// Register write and read handles of the upstream reader
for (auto rh : m_cfg.upstreamReader->readHandles()) {
registerReadHandle(*rh);
}
Expand Down

0 comments on commit 3ca8ff1

Please sign in to comment.