bindings: rust: fix documentation of line_request set_values
authorKent Gibson <warthog618@gmail.com>
Mon, 16 Jan 2023 12:51:44 +0000 (20:51 +0800)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 16 Jan 2023 13:53:40 +0000 (14:53 +0100)
Replace "Get" with "Set".

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/rust/libgpiod/src/line_request.rs

index c16ec9fb7dbffcba3d5ef8f4d1b3f75c97f2a68c..d9e041c761993be5ddbdf137d025c728353d9900 100644 (file)
@@ -106,7 +106,7 @@ impl Request {
         }
     }
 
-    /// Get values of a subset of lines associated with the request.
+    /// Set values of a subset of lines associated with the request.
     pub fn set_values_subset(&self, map: ValueMap) -> Result<()> {
         let mut offsets = Vec::new();
         let mut values = Vec::new();
@@ -136,7 +136,7 @@ impl Request {
         }
     }
 
-    /// Get values of all lines associated with the request.
+    /// Set values of all lines associated with the request.
     pub fn set_values(&self, values: &[Value]) -> Result<()> {
         if values.len() != self.num_lines() as usize {
             return Err(Error::InvalidArguments);