Skip to content

Commit afa1a2a

Browse files
committed
v0.86.1 - Remove all the non-ascii characters
1 parent 78409d2 commit afa1a2a

15 files changed

Lines changed: 29 additions & 29 deletions

File tree

library/Morloc/CodeGenerator/Express.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ expressPolyExpr
447447
-- target language (e.g. `x.field` for .isFile). Wrapping in
448448
-- PolyManifold creates a nested manifold whose body's `return` leaks
449449
-- into the parent's scope when the manifold gets inlined by codegen.
450-
-- Treating PatCallP like srcInline matches its semantics it's
450+
-- Treating PatCallP like srcInline matches its semantics - it's
451451
-- always a leaf expression, never a real function call.
452452
expressPolyExpr
453453
findRemote

library/Morloc/CodeGenerator/Grammars/Translator/Imperative.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ data LowerConfig m = LowerConfig
298298
-- ^ name, all args, manifold type, priorLines, body, headForm
299299
-- Returns Nothing if dedup'd (C++), Just funcDef otherwise
300300
, lcMakeLambda :: MDoc -> [MDoc] -> [MDoc] -> MDoc
301-
-- ^ name, contextArgs, boundArgs partial application expression
301+
-- ^ name, contextArgs, boundArgs - partial application expression
302302
, lcRegisterSchema :: Text -> m Int
303303
-- ^ Register a schema string and return its unique ID (index into schema table)
304304
}

library/Morloc/CodeGenerator/Serial.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ makeSerialAST m lang t0 = do
320320
makeSerialAST' gscope typepackers ft@(VarF v@(FV gv cv)) = do
321321
anc <- MM.gets stateSerialAncestors
322322
-- Cycle detection: a bare reference to a record currently being
323-
-- lowered is a guarded self-recursive back-edge (see §3 in the
323+
-- lowered is a guarded self-recursive back-edge (see seciont 3 in the
324324
-- recursive-fields plan -- TypeEval leaves these as VarU/VarF).
325325
-- Emit SerialRec instead of trying to look up a packer.
326326
if Set.member gv anc

library/Morloc/CodeGenerator/SystemConfig.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ configureAllSteps verbose force slurmSupport sanitize config = do
9898
-- Strategy (in priority order):
9999
-- 1. MORLOC_RUST_BIN: directory with pre-built libmorloc.so + morloc-nexus
100100
-- (used for release installs with portable musl-linked binaries)
101-
-- 2. MORLOC_RUST_DIR: Cargo workspace source build from source via cargo
101+
-- 2. MORLOC_RUST_DIR: Cargo workspace source - build from source via cargo
102102
-- (used for development and container builds)
103103
-- 3. Auto-detect Cargo workspace relative to morloc binary
104104
let soPath = libDir </> "libmorloc.so"

library/Morloc/Frontend/Parser.y

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ types1 :: { [TypeU] }
814814
| types1 atom_type { $1 ++ [$2] }
815815
816816
-- An effect row: comma-separated UPPER labels plus at most one LOWER
817-
-- tail variable (validated by 'mkEffectRow'). `<>` is effects-only;
817+
-- tail variable (validated by 'mkEffectRow'). `<...>` is effects-only;
818818
-- the bare `<a>` existential-hole syntax was removed.
819819
effect_row :: { [Either EffectLabel TVar] }
820820
: effect_item { [$1] }

library/Morloc/Frontend/Restructure.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -894,9 +894,9 @@ refineKinds dag = do
894894
--
895895
-- Implicit constraints come from canonical operator forms:
896896
--
897-
-- - @RecExtendU k _ (RecVarU r)@ extending a polymorphic Rec by
897+
-- - @RecExtendU k _ (RecVarU r)@ - extending a polymorphic Rec by
898898
-- a literal key emits @CDisjoint (SetLitU [StrLitU k]) (KeysU r)@.
899-
-- - @RecRestrictU r l@ restricting a Rec to a list of keys emits
899+
-- - @RecRestrictU r l@ - restricting a Rec to a list of keys emits
900900
-- @CSubset (ListToSetU l) (KeysU r)@.
901901
--
902902
-- Constraints are de-duplicated against the existing @econs@ set so

library/Morloc/Frontend/Typecheck.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2052,7 +2052,7 @@ tryExtractStrListPre g (AnnoS _ _ e) = tryEvalStrList g e
20522052
-- When a function has labeled nat params (e.g., m:Int -> Tensor1 m Real)
20532053
-- and the corresponding arguments are int literals or let-bound ints,
20542054
-- inject NatVarU solutions into gamma so the return type gets concrete
2055-
-- dimensions. Same for Str labels (e.g., f:Str -> Tagged f a) extract
2055+
-- dimensions. Same for Str labels (e.g., f:Str -> Tagged f a) - extract
20562056
-- string literals from the corresponding args and inject StrVarU solutions
20572057
-- into gammaStrSubs. See plans/tables/05-labels-as-type-vars.md.
20582058
resolveNatLabels ::

library/Morloc/Namespace/Prim.hs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ import Text.Read (readMaybe)
8686

8787
-- | Kind of a type variable.
8888
--
89-
-- - 'KindType' proper type variable (the default)
90-
-- - 'KindNat' natural number (for dimensions, e.g. Vector n a)
91-
-- - 'KindStr' string literal at the type level (for column names, e.g. f:Str
89+
-- - 'KindType' - proper type variable (the default)
90+
-- - 'KindNat' - natural number (for dimensions, e.g. Vector n a)
91+
-- - 'KindStr' - string literal at the type level (for column names, e.g. f:Str
9292
-- in the Stage 2 tables refactor). See plans/tables/04-str-solver-scope.md.
93-
-- - 'KindRec' row-polymorphic record schema (for column maps, e.g. r:Rec in
93+
-- - 'KindRec' - row-polymorphic record schema (for column maps, e.g. r:Rec in
9494
-- Table n r). See plans/tables/10-rec-solver-decidability.md.
95-
-- - 'KindList' ordered, position-preserving sequence parameterised by an
95+
-- - 'KindList' - ordered, position-preserving sequence parameterised by an
9696
-- element kind (e.g. List Str for column-name lists).
97-
-- - 'KindSet' unordered, duplicate-free collection parameterised by an
97+
-- - 'KindSet' - unordered, duplicate-free collection parameterised by an
9898
-- element kind (e.g. Set Str for the keys of a Rec).
9999
data Kind
100100
= KindType

library/Morloc/Namespace/State.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ data Gamma = Gamma
281281
-- of the tables refactor; see plans/tables/10-rec-solver-decidability.md).
282282
, gammaRecSubs :: Map TVar TypeU
283283
-- | Solutions for ListVarU variables from list constraint solving (Stage 8
284-
-- of the tables refactor foundational kind layer).
284+
-- of the tables refactor - foundational kind layer).
285285
, gammaListSubs :: Map TVar TypeU
286286
-- | Solutions for SetVarU variables from set constraint solving (Stage 8).
287287
, gammaSetSubs :: Map TVar TypeU
@@ -305,7 +305,7 @@ data Gamma = Gamma
305305
-- @Nothing@ means "no signature has been claimed yet"; the next
306306
-- @VarS (MonomorphicExpr (Just _) _)@ handled by 'synthE' will lock
307307
-- in its declared @econs@ as the assumption set. @Just@ (even @Just
308-
-- []@) means the slot is taken subsequent inner VarS calls add
308+
-- []@) means the slot is taken - subsequent inner VarS calls add
309309
-- only to @gammaConstraints@, never to assumptions. The Maybe
310310
-- distinguishes "outermost-not-seen-yet" from "outermost-seen-with-
311311
-- empty-econs", which a plain list cannot.

library/Morloc/Namespace/Type.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1187,7 +1187,7 @@ containsUnk StrVoidT = False
11871187

11881188
----- Pretty instances -------------------------------------------------------
11891189

1190-
-- | Records, objects, and tables render identically in type signatures
1190+
-- | Records, objects, and tables render identically in type signatures -
11911191
-- just the type name optionally followed by parameters. The record/object/
11921192
-- table distinction is surfaced separately in the CLI help's type
11931193
-- definition block, where each named type is listed with its tag and

0 commit comments

Comments
 (0)