Skip to content

Commit

Permalink
fixed errors in commit which would lead to false library usage:
Browse files Browse the repository at this point in the history
  • Loading branch information
GueLaKais committed Jun 24, 2024
1 parent b689d84 commit ee73efc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rosidl_runtime_rs/src/sequence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -476,10 +476,9 @@ where
/// ```
/// use rosidl_runtime_rs::Sequence;
///
/// let original = Sequence::new(vec![1, 2, 3]);
/// let original = Sequence::new(6);
/// let cloned = original.clone();
///
/// assert_eq!(original.data, cloned.data);
/// ```
///
/// # Panics
Expand Down

0 comments on commit ee73efc

Please sign in to comment.