Skip to content

Commit 3f46fa4

Browse files
committed
docs: Fix typos
1 parent c248b49 commit 3f46fa4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/core/src/parser/filter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ pub struct FilterArguments<'a> {
110110
/// }
111111
///
112112
/// impl Filter for AtLeastFilter {
113-
/// fn evaluate(&self, input: &ValueViwe, runtime: &dyn Runtime) -> Result<Value> {
113+
/// fn evaluate(&self, input: &ValueView, runtime: &dyn Runtime) -> Result<Value> {
114114
/// // Evaluate the `FilterParameters`
115115
/// let args = self.args.evaluate(runtime)?;
116116
///

crates/derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ use proc_macro::TokenStream;
4545
///
4646
/// If you want to only accept a certain type of `Value` for a given argument,
4747
/// you may mark its type with `arg_type = "..."`. This will take away the burden
48-
/// and boilerplate of handling errors and unwraping the liquid `Value` into a rust
48+
/// and boilerplate of handling errors and unwrapping the liquid `Value` into a rust
4949
/// type.
5050
///
5151
/// Right now, there is a default `arg_type`, "any", that accepts any value, as well

tests/conformance_ruby/tags/render_tag_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ fn test_sub_contexts_count_towards_the_same_recursion_limit() {
124124
}
125125
126126
#[test]
127-
fn test_dynamically_choosen_templates_are_not_allowed() {
127+
fn test_dynamically_chosen_templates_are_not_allowed() {
128128
assert_syntax_error("{% assign name = 'snippet' %}{% render name %}")
129129
}
130130

0 commit comments

Comments
 (0)