Skip to content

Commit

Permalink
fix typos (#653)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-fila authored Aug 21, 2024
1 parent 6361dfd commit 9ff9886
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ and via direct object access:
}
```

### Cloneing objects
### Cloning objects

In order to clone objects it is necessary to use the `clone` method which
returns a `Mutable` object again. `clone` takes a parameter `cloneRelations`
Expand Down
4 changes: 2 additions & 2 deletions doc/storage_details.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ And the following information once per category
- The schema version of all stored collections
- Which collections are stored as subset collections

Here the `TTree` based and `RNTuple` based backends differ slighlty in the way
Here the `TTree` based and `RNTuple` based backends differ slightly in the way
these data are stored exactly. The `TTree` based backend stores the data in a
slightly more structued way, taking advantage of ROOTs capabilities to stream
slightly more structured way, taking advantage of ROOTs capabilities to stream
out more complex object, e.g. the `podio::CollectionIDTable` is streamed as a
whole. The `RNTuple` based backend on the other hand, destructures the
information into separate fields that run in parallel.
Expand Down
2 changes: 1 addition & 1 deletion include/podio/Frame.h
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class Frame {
/// @tparam FrameDataT Arbitrary data container that provides access to the
/// collection buffers as well as the metadata, when
/// requested by the Frame. The unique_ptr has to be checked
/// for validity before calling this construtor.
/// for validity before calling this constructor.
///
/// @throws std::invalid_argument if the passed pointer is a nullptr.
template <typename FrameDataT>
Expand Down
4 changes: 2 additions & 2 deletions include/podio/Writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Writer {

/// Store the given frame with the given category
///
/// This stores all avaialble categories from the passed frame
/// This stores all available categories from the passed frame
///
/// @param frame The frame to write
/// @param category The category name under which this frame should be stored
Expand All @@ -96,7 +96,7 @@ class Writer {

/// Store the given frame under the "events" category
///
/// This stores all avaialble categories from the passed frame
/// This stores all available categories from the passed frame
///
/// @param frame The frame to write
void writeEvent(const podio::Frame& frame) {
Expand Down

0 comments on commit 9ff9886

Please sign in to comment.