Skip to content

Commit ee73efc

Browse files
author
GueLaKais
committed
fixed errors in commit which would lead to false library usage:
1 parent b689d84 commit ee73efc

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
@@ -476,10 +476,9 @@ where
476476
/// ```
477477
/// use rosidl_runtime_rs::Sequence;
478478
///
479-
/// let original = Sequence::new(vec![1, 2, 3]);
479+
/// let original = Sequence::new(6);
480480
/// let cloned = original.clone();
481481
///
482-
/// assert_eq!(original.data, cloned.data);
483482
/// ```
484483
///
485484
/// # Panics

0 commit comments

Comments
 (0)