diff --git a/base/src/Data/Macaw/CFG/Core.hs b/base/src/Data/Macaw/CFG/Core.hs index d372de12..72eadae1 100644 --- a/base/src/Data/Macaw/CFG/Core.hs +++ b/base/src/Data/Macaw/CFG/Core.hs @@ -316,7 +316,7 @@ instance Show (CValue arch tp) where -- and are immutable within that context (i.e. their value would not -- change from a memory write). data Value arch ids tp where - -- | A constant vlaue + -- | A constant value CValue :: !(CValue arch tp) -> Value arch ids tp -- | Value from an assignment statement. AssignedValue :: !(Assignment arch ids tp) diff --git a/base/src/Data/Macaw/Memory.hs b/base/src/Data/Macaw/Memory.hs index ad067c6d..0e2789aa 100644 --- a/base/src/Data/Macaw/Memory.hs +++ b/base/src/Data/Macaw/Memory.hs @@ -1287,9 +1287,8 @@ instance MemWidth w => Show (MemoryError w) where ------------------------------------------------------------------------ -- Reading contents --- | Return list of contents from given word or an error if this we can't cleanly --- partition a relocation --- due to a relocation. +-- | Return list of contents from given word or an error if this we can't +-- cleanly partition a relocation due to a relocation. segoffContentsAfter :: MemWidth w => MemSegmentOff w -> Either (MemoryError w) [MemChunk w]