@@ -218,7 +218,7 @@ pub trait DataSource {
218218 fn fetch_summary_tile ( & self , entry_id : & EntryID , tile_id : TileID , full : bool ) -> SummaryTile ;
219219 fn fetch_slot_tile ( & self , entry_id : & EntryID , tile_id : TileID , full : bool ) -> SlotTile ;
220220 fn fetch_slot_meta_tile ( & self , entry_id : & EntryID , tile_id : TileID , full : bool )
221- -> SlotMetaTile ;
221+ -> SlotMetaTile ;
222222}
223223
224224impl EntryID {
@@ -389,9 +389,9 @@ pub struct EntryIDSlug<'a>(pub &'a EntryID);
389389
390390impl < ' a > fmt:: Display for EntryIDSlug < ' a > {
391391 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
392- for ( i, e) in self . 0 . 0 . iter ( ) . enumerate ( ) {
392+ for ( i, e) in self . 0 . 0 . iter ( ) . enumerate ( ) {
393393 write ! ( f, "{}" , e) ?;
394- if i < self . 0 . 0 . len ( ) - 1 {
394+ if i < self . 0 . 0 . len ( ) - 1 {
395395 write ! ( f, "_" ) ?;
396396 }
397397 }
@@ -403,9 +403,9 @@ pub struct TileIDSlug(pub TileID);
403403
404404impl fmt:: Display for TileIDSlug {
405405 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
406- write ! ( f, "{}" , self . 0 . 0 . start. 0 ) ?;
406+ write ! ( f, "{}" , self . 0.0 . start. 0 ) ?;
407407 write ! ( f, "_" ) ?;
408- write ! ( f, "{}" , self . 0 . 0 . stop. 0 )
408+ write ! ( f, "{}" , self . 0.0 . stop. 0 )
409409 }
410410}
411411
0 commit comments