Skip to content

Commit 5146273

Browse files
committed
Make the Step type alias private
1 parent f032ff0 commit 5146273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/migrate/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ struct A<'a, 'b: 'a> {
1111
t: &'a Transaction<'b>,
1212
}
1313

14-
pub type Step = Box<FnMut(A) -> PgResult<()> + 'static>;
14+
type Step = Box<FnMut(A) -> PgResult<()> + 'static>;
1515

1616
pub struct Migration {
1717
version: i64,

0 commit comments

Comments
 (0)