Remove obsolete FIXME comment.

Commit c634cb1d36 removed the trait and changed the function to return
a &TimelineWriter, as the FIXME said we should do, but forgot to remove
the FIXME.
This commit is contained in:
Heikki Linnakangas
2022-10-11 14:47:55 +03:00
committed by Heikki Linnakangas
parent e520293090
commit db26bc49cc

View File

@@ -475,10 +475,6 @@ impl Timeline {
}
/// Mutate the timeline with a [`TimelineWriter`].
///
/// FIXME: This ought to return &'a TimelineWriter, where TimelineWriter
/// is a generic type in this trait. But that doesn't currently work in
/// Rust: https://rust-lang.github.io/rfcs/1598-generic_associated_types.html
pub fn writer(&self) -> TimelineWriter<'_> {
TimelineWriter {
tl: self,