Skip to content

Commit

Permalink
#249: Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Oct 25, 2022
1 parent 095e982 commit 47b1a33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/checkpoint_example_3_nonintrusive.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ struct TestReconstruct {
// of the type which will be serialized.
namespace magistrate { namespace nonintrusive { namespace examples {

// \breif Non-Intrusive Serialize method for TestDefaultCons structure.
// \brief Non-Intrusive Serialize method for TestDefaultCons structure.
//
// \note Together with default constructor provides a serialization / deserialization
// capability to the structure.
Expand All @@ -118,13 +118,13 @@ void serialize(Serializer& s, TestDefaultCons& tdc) {
s | tdc.a;
}

// \breif Non-Intrusive Serialize method for TestShouldFailReconstruct structure.
// \brief Non-Intrusive Serialize method for TestShouldFailReconstruct structure.
template <typename Serializer>
void serialize(Serializer& s, TestShouldFailReconstruct& tsf) {
s | tsf.a;
}

// \breif Non-Intrusive Serialize method for TestReconstruct structure.
// \brief Non-Intrusive Serialize method for TestReconstruct structure.
template <typename Serializer>
void serialize(Serializer& s, TestReconstruct& tr) {
s | tr.a;
Expand Down

0 comments on commit 47b1a33

Please sign in to comment.