Skip to content

Commit a5cfa8d

Browse files
committed
Fix typos
1 parent e2915ec commit a5cfa8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
118118
the `render` tag used within liquid. Default is project root.
119119

120120
log_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

123123
error_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
173173
let () =
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 ^ "!"))

0 commit comments

Comments
 (0)