-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
|
||
pub mod unified_diff; | ||
pub mod normal_diff; | ||
pub mod ed_diff; | ||
pub mod context_diff; | ||
pub mod ed_diff; | ||
pub mod normal_diff; | ||
pub mod unified_diff; | ||
|
||
// Re-export the public functions/types you need | ||
pub use unified_diff::diff as unified_diff; | ||
pub use normal_diff::diff as normal_diff; | ||
pub use context_diff::diff as context_diff; | ||
pub use ed_diff::diff as ed_diff; | ||
pub use context_diff::diff as context_diff; | ||
pub use normal_diff::diff as normal_diff; | ||
pub use unified_diff::diff as unified_diff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters