diff --git a/doc/examples.md b/doc/examples.md index 770089fae..89bea5bd4 100644 --- a/doc/examples.md +++ b/doc/examples.md @@ -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` diff --git a/doc/storage_details.md b/doc/storage_details.md index 4234fb500..9aabce7f5 100644 --- a/doc/storage_details.md +++ b/doc/storage_details.md @@ -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. diff --git a/include/podio/Frame.h b/include/podio/Frame.h index 75aedc3bd..6c0c30bd9 100644 --- a/include/podio/Frame.h +++ b/include/podio/Frame.h @@ -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 diff --git a/include/podio/Writer.h b/include/podio/Writer.h index 65d55acc4..9f2c4d85e 100644 --- a/include/podio/Writer.h +++ b/include/podio/Writer.h @@ -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 @@ -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) {