diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index 9b6b9e22f7..0303ffbd1b 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -6,7 +6,6 @@ config: no-duplicate-heading: false no-emphasis-as-heading: false no-inline-html: false - no-space-in-code: false no-trailing-punctuation: false no-trailing-spaces: false ul-indent: false diff --git a/crates/compiler/builtins/README.md b/crates/compiler/builtins/README.md index c937e6f0f8..4584406868 100644 --- a/crates/compiler/builtins/README.md +++ b/crates/compiler/builtins/README.md @@ -56,7 +56,7 @@ fn list_repeat(symbol: Symbol, var_store: &mut VarStore) -> Def { } ``` -In these builtin definitions you will need to allocate for and list the arguments. For `List.repeat`, the arguments are the `elem_var` and the `len_var`. So in both the `body` and `defn` we list these arguments in a vector, with the `Symbol::ARG_1` and` Symvol::ARG_2` designating which argument is which. +In these builtin definitions you will need to allocate for and list the arguments. For `List.repeat`, the arguments are the `elem_var` and the `len_var`. So in both the `body` and `defn` we list these arguments in a vector, with the `Symbol::ARG_1` and `Symvol::ARG_2` designating which argument is which. Since `List.repeat` is implemented entirely as low level functions, its `body` is a `RunLowLevel`, and the `op` is `LowLevel::ListRepeat`. Lets talk about `LowLevel` in the next section.