Removes an empty comment

encoder
Thomas Tanon 3 years ago committed by GitHub
parent 3bed098e9e
commit 3d6af19288
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/sparesults/src/solution.rs

@ -49,7 +49,7 @@ impl QuerySolution {
/// use oxrdf::{Variable, Literal}; /// use oxrdf::{Variable, Literal};
/// ///
/// let solution = QuerySolution::from((vec![Variable::new_unchecked("foo"), Variable::new_unchecked("bar")], vec![Some(Literal::from(1).into()), None])); /// let solution = QuerySolution::from((vec![Variable::new_unchecked("foo"), Variable::new_unchecked("bar")], vec![Some(Literal::from(1).into()), None]));
/// assert_eq!(solution.len(), 2); // there are /// assert_eq!(solution.len(), 2);
/// ``` /// ```
#[inline] #[inline]
pub fn len(&self) -> usize { pub fn len(&self) -> usize {

Loading…
Cancel
Save