Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit b889e41

Browse files
authored
Merge branch 'master' into proto-fixes
2 parents b05f5d2 + dffe323 commit b889e41

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Data/Abstract/Address/Monovariant.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Data.Abstract.Name
99
import qualified Data.Set as Set
1010
import Prologue
1111

12-
-- | 'Monovariant' models using one address for a particular name. It trackes the set of values that a particular address takes and uses it's name to lookup in the store and only allocation if new.
12+
-- | 'Monovariant' models using one address for a particular name. It tracks the set of values that a particular address takes and uses it's name to lookup in the store and only allocation if new.
1313
newtype Monovariant = Monovariant { unMonovariant :: Name }
1414
deriving (Eq, Ord)
1515

src/Data/Abstract/ScopeGraph.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ instance Ord AccessControl where
7676
(<=) Private _ = True
7777
(<=) _ Private = False
7878

79-
-- | Protected AccessControl is inbetween Private and Public in the order specification.
79+
-- | Protected AccessControl is in between Private and Public in the order specification.
8080
-- Protected AccessControl "on the left" has access to Protected or Public AccessControls "on the right".
8181
(<=) Protected Public = True
8282
(<=) Protected Protected = True

src/Language/Go/Assignment.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,6 @@ manyTermsTill step end = manyTill (step <|> comment) end
661661
manyTerm :: Assignment Term -> Assignment [Term]
662662
manyTerm = many . term
663663

664-
-- | Match a term and contextualize any comments preceeding or proceeding the term.
664+
-- | Match a term and contextualize any comments preceding or proceeding the term.
665665
term :: Assignment Term -> Assignment Term
666666
term term' = contextualize comment term' <|> makeTerm1 <$> (Syntax.Context <$> some1 comment <*> emptyTerm)

src/Rendering/TOC.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ newtype DedupeKey = DedupeKey (T.Text, T.Text) deriving (Eq, Ord)
9696
-- different behaviors:
9797
-- 1. Identical entries are in the list.
9898
-- Action: take the first one, drop all subsequent.
99-
-- 2. Two similar entries (defined by a case insensitive comparision of their
99+
-- 2. Two similar entries (defined by a case insensitive comparison of their
100100
-- identifiers) are in the list.
101101
-- Action: Combine them into a single Replaced entry.
102102
dedupe :: [Entry Declaration] -> [Entry Declaration]

0 commit comments

Comments
 (0)