diff options
Diffstat (limited to 'src/lib/netlist/plib/pgsl.h')
-rw-r--r-- | src/lib/netlist/plib/pgsl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/netlist/plib/pgsl.h b/src/lib/netlist/plib/pgsl.h index 9d7967070db..4fcbdd527f1 100644 --- a/src/lib/netlist/plib/pgsl.h +++ b/src/lib/netlist/plib/pgsl.h @@ -118,8 +118,8 @@ namespace plib { /// \brief cast to void * /// - /// The purpose here is to help identifiy casts to void in the code. - /// These case usuallyindicate some wizard assumptioms which should be easily + /// The purpose here is to help identify casts to void in the code. + /// These case usually indicate some wizard assumptions which should be easily /// be easy to identify. template <typename T> constexpr void * void_ptr_cast(T *ptr) noexcept { return static_cast<void *>(ptr); } |