From 47b1a33888ebbb5c2d8a87493657344ab9cb7d01 Mon Sep 17 00:00:00 2001 From: Phil Miller Date: Tue, 25 Oct 2022 16:38:59 -0400 Subject: [PATCH] #249: Fix typo --- examples/checkpoint_example_3_nonintrusive.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/checkpoint_example_3_nonintrusive.cc b/examples/checkpoint_example_3_nonintrusive.cc index 119b8977..1238e6bb 100644 --- a/examples/checkpoint_example_3_nonintrusive.cc +++ b/examples/checkpoint_example_3_nonintrusive.cc @@ -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. @@ -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 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 void serialize(Serializer& s, TestReconstruct& tr) { s | tr.a;