Skip to content

Commit

Permalink
Fix typo in artichoke-backend crate docs and README
Browse files Browse the repository at this point in the history
  • Loading branch information
lopopolo committed Jul 28, 2019
1 parent 6ecb5b4 commit ed5e8bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion artichoke-backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ assert_eq!(result, Ok(100));
### Calling Ruby Functions from Rust

The `ValueLike` trait exposes a _funcall interface_ which can call Ruby
functions on a `Value` using a `String` function name and a `Vec<Value>` or
functions on a `Value` using a `String` function name and a `Vec<Value>` of
arguments. funcall takes a type parameter bound by `TryConvert` and converts the
result of the function call to a Rust type (which may be `Value` or another
"native" type).
Expand Down
2 changes: 1 addition & 1 deletion artichoke-backend/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
//!
//! The [`ValueLike`](value::ValueLike) trait exposes a _funcall interface_
//! which can call Ruby functions on a [`Value`](value::Value) using a `String`
//! function name and a `Vec<Value>` or arguments. funcall takes a type
//! function name and a `Vec<Value>` of arguments. funcall takes a type
//! parameter bound by [`TryConvert`](convert::TryConvert) and converts the
//! result of the function call to a Rust type (which may be `Value` or another
//! "native" type).
Expand Down

0 comments on commit ed5e8bb

Please sign in to comment.