From 98ca788910d48b14ccabbd1a6ac8cef334fd38e7 Mon Sep 17 00:00:00 2001 From: Sebastian Schmidt Date: Wed, 20 Mar 2019 16:34:23 +0200 Subject: [PATCH] Reword documentation of shortcut methods to be more direct Changed `expecting a type` to `into a type` to be more clear that the function actually returns a result of the respecting type. Related to #15 --- src/interface/mod.rs | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/interface/mod.rs b/src/interface/mod.rs index 6e5bbf5..98e9c18 100644 --- a/src/interface/mod.rs +++ b/src/interface/mod.rs @@ -73,7 +73,7 @@ pub fn build_operator_tree(string: &str) -> Result { tree::tokens_to_operator_tree(token::tokenize(string)?) } -/// Evaluate the given expression string expecting a string. +/// Evaluate the given expression string into a string. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_string(string: &str) -> Result { @@ -84,7 +84,7 @@ pub fn eval_string(string: &str) -> Result { } } -/// Evaluate the given expression string expecting an integer. +/// Evaluate the given expression string into an integer. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_int(string: &str) -> Result { @@ -95,7 +95,7 @@ pub fn eval_int(string: &str) -> Result { } } -/// Evaluate the given expression string expecting a float. +/// Evaluate the given expression string into a float. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_float(string: &str) -> Result { @@ -106,7 +106,7 @@ pub fn eval_float(string: &str) -> Result { } } -/// Evaluate the given expression string expecting a boolean. +/// Evaluate the given expression string into a boolean. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_boolean(string: &str) -> Result { @@ -117,7 +117,7 @@ pub fn eval_boolean(string: &str) -> Result { } } -/// Evaluate the given expression string expecting a tuple. +/// Evaluate the given expression string into a tuple. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_tuple(string: &str) -> Result, Error> { @@ -128,7 +128,7 @@ pub fn eval_tuple(string: &str) -> Result, Error> { } } -/// Evaluate the given expression string expecting a string with the given configuration. +/// Evaluate the given expression string into a string with the given configuration. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_string_with_configuration( @@ -142,7 +142,7 @@ pub fn eval_string_with_configuration( } } -/// Evaluate the given expression string expecting an integer with the given configuration. +/// Evaluate the given expression string into an integer with the given configuration. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_int_with_configuration( @@ -156,7 +156,7 @@ pub fn eval_int_with_configuration( } } -/// Evaluate the given expression string expecting a float with the given configuration. +/// Evaluate the given expression string into a float with the given configuration. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_float_with_configuration( @@ -170,7 +170,7 @@ pub fn eval_float_with_configuration( } } -/// Evaluate the given expression string expecting a boolean with the given configuration. +/// Evaluate the given expression string into a boolean with the given configuration. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_boolean_with_configuration( @@ -184,7 +184,7 @@ pub fn eval_boolean_with_configuration( } } -/// Evaluate the given expression string expecting a tuple with the given configuration. +/// Evaluate the given expression string into a tuple with the given configuration. /// /// *See the [crate doc](index.html) for more examples and explanations of the expression format.* pub fn eval_tuple_with_configuration(