@@ -264,9 +264,9 @@ impl SearchControl {
-/**
- * searches for moves and returns the best move found plus its value
- */
+///
+/// searches for moves and returns the best move found plus its value
pub fn search(mut board: Board, sc: &mut SearchControl, hashs: Arc<RwLock<Cache>>, mut alpha: PosValue, beta: PosValue, depth: i32) -> SearchResult {
let mut hash = hashs.write().unwrap();
if depth == 0 {