Skip to content

Commit 35179eb

Browse files
author
GueLaKais
committed
fixed errors in commit which would lead to false library usage:
1 parent 505f2a2 commit 35179eb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

rosidl_runtime_rs/src/sequence.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,9 @@ where
455455
/// ```
456456
/// use rosidl_runtime_rs::Sequence;
457457
///
458-
/// let original = Sequence::new(vec![1, 2, 3]);
458+
/// let original = Sequence::new(6);
459459
/// let cloned = original.clone();
460460
///
461-
/// assert_eq!(original.data, cloned.data);
462461
/// ```
463462
///
464463
/// # Panics

0 commit comments

Comments
 (0)