Skip to content

Commit

Permalink
🚚 Rename internal trait
Browse files Browse the repository at this point in the history
  • Loading branch information
ChanTsune committed Oct 5, 2024
1 parent 5fa0340 commit 2aee0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/ext.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ use crate::chunk::{self, Ace};
use pna::{prelude::*, NormalEntry, RawChunk};
use std::io;

pub(crate) trait RegularEntryExt {
pub(crate) trait NormalEntryExt {
fn acl(&self) -> io::Result<Vec<Ace>>;
}

impl<T> RegularEntryExt for NormalEntry<T>
impl<T> NormalEntryExt for NormalEntry<T>
where
RawChunk<T>: Chunk,
{
Expand Down

0 comments on commit 2aee0f3

Please sign in to comment.