aboutsummaryrefslogtreecommitdiff
path: root/src/expr/wrapper.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/wrapper.rs')
-rw-r--r--src/expr/wrapper.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr/wrapper.rs b/src/expr/wrapper.rs
index 1bcc520..00c555c 100644
--- a/src/expr/wrapper.rs
+++ b/src/expr/wrapper.rs
@@ -47,7 +47,7 @@ impl ExpressionWrapper {
}
}
- /// Attempt to decode the expression as the type T.
+ /// Attempts to decode the expression as the type T.
pub fn decode_expr<T: Expression>(&self) -> Result<T, DeserializationError> {
if let Some(kind) = self.get_kind() {
let raw_name = unsafe { CStr::from_ptr(T::get_raw_name()) };