diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 12:07:30 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-15 12:07:30 +0200 |
commit | ed72a2e16ece757941786f586bd2a80022892a74 (patch) | |
tree | ea0e93ab6daca1ef4c76d62bd311349dc12a86ee /src/tokenizer.rs | |
parent | ee967aa634b5f8e9d30329d587538f1371a5da95 (diff) | |
download | markdown-rs-ed72a2e16ece757941786f586bd2a80022892a74.tar.gz markdown-rs-ed72a2e16ece757941786f586bd2a80022892a74.tar.bz2 markdown-rs-ed72a2e16ece757941786f586bd2a80022892a74.zip |
Add derive of `Eq` where possible
Diffstat (limited to 'src/tokenizer.rs')
-rw-r--r-- | src/tokenizer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer.rs b/src/tokenizer.rs index 5b5e311..d66e8f6 100644 --- a/src/tokenizer.rs +++ b/src/tokenizer.rs @@ -102,7 +102,7 @@ struct Attempt { /// The internal state of a tokenizer, not to be confused with states from the /// state machine, this instead is all the information about where we currently /// are and what’s going on. -#[derive(Debug, Clone)] +#[derive(Clone, Debug)] struct Progress { /// Length of `events`. /// |