File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ let () =
4747 |> Object.add "version" (String "4.14.0")
4848 in
4949
50- (* HeRe we include our favorite_animal as a string an our environment as an object *)
50+ (* Here we include our favorite_animal as a string and our environment as an object *)
5151 let context =
5252 Ctx.empty
5353 |> Ctx.add "favorite_animal" (String "horse")
@@ -118,7 +118,7 @@ template_directory
118118the ` render ` tag used within liquid. Default is project root.
119119
120120log_directory
121- - Where log files are written too . This must be set if log policy is set to ` Verbose ` .
121+ - Where log files are written to . This must be set if log policy is set to ` Verbose ` .
122122
123123error_policy:
124124- ` Strict ` - A Liquid Syntax error will raise an exception
@@ -173,7 +173,7 @@ type liquid_filter = value Ctx.t -> value list -> (value, string) Result.t
173173let () =
174174 (*
175175 This function accepts a string, anything else will throw an error.
176- Note: since we discard the tail, extra params aRe simply ignored
176+ Note: since we discard the tail, extra params are simply ignored
177177 *)
178178 let greet _ = function
179179 | String person :: _ -> Ok (String ("Hello " ^ person ^ "!"))
You can’t perform that action at this time.
0 commit comments