Skip to content

Commit 0e28a75

Browse files
committed
reorder tables' rows in lib.rs docs
1 parent 982ee55 commit 0e28a75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
//!
5858
//! | | Applied to all solutions | Applied to each solution<br>or group of solutions |
5959
//! |:---------------------------|:------------------------:|:-------------------------------------------------:|
60-
//! | **Test operator** | [`Tester`] | [`Test`] |
6160
//! | **Selection operator** | [`Selector`] | [`Selection`] |
6261
//! | **Recombination operator** | [`Recombinator`] | [`Recombination`] |
6362
//! | **Mutation operator** | [`Mutator`] | [`Mutation`] |
63+
//! | **Test operator** | [`Tester`] | [`Test`] |
6464
//! | **Termination operator** | [`Terminator`] | [`Termination`] |
6565
//!
6666
//! Each pair of operators implements its respective **executor**. For example,
@@ -119,10 +119,10 @@
119119
//!
120120
//! | | Operator must implement | Solution must implement |
121121
//! |:------------------|:-----------------------:|:-----------------------:|
122-
//! | [`Test`] | `Sync` | `Sync` |
123122
//! | [`Selection`] | `Sync` | `Sync` |
124123
//! | [`Recombination`] | `Sync` | `Sync + Send` |
125124
//! | [`Mutation`] | `Sync` | `Sync + Send` |
125+
//! | [`Test`] | `Sync` | `Sync` |
126126
//! | [`Termination`] | `Sync` | `Sync` |
127127
//!
128128
//! For simple operators, the overhead introduced by parallelization usually

0 commit comments

Comments
 (0)