aboutsummaryrefslogtreecommitdiff
path: root/src/attacks.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/attacks.rs')
-rw-r--r--src/attacks.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/attacks.rs b/src/attacks.rs
index 8217ce6..1074037 100644
--- a/src/attacks.rs
+++ b/src/attacks.rs
@@ -21,9 +21,6 @@ pub type Byte = u8;
/// First index is *occupancy* of the first rank (all possible states)
/// and the second index is the file of the piece on the first rank
-/// ```
-/// rank_attacks = first_rank_attacks[occupancy][piece_file];
-/// ```
type FirstRankAttacks = [[Byte; 8]; 256];
#[allow(dead_code)]