docs: Change // (regular comment) to /// (doc comment)

This commit is contained in:
demenik
2025-12-10 17:46:27 +01:00
parent 6bd135ca72
commit 5106561503
5 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ use std::fs;
use std::io::Write;
use uuid::Uuid;
// Helper function to create a temporary file with content
/// Helper function to create a temporary file with content
fn create_temp_file(content: &str) -> (std::path::PathBuf, String) {
let filename = format!("test_config_{}.json", Uuid::new_v4());
let temp_dir = std::env::temp_dir();

View File

@@ -4,7 +4,7 @@ use pomomon_garden::features::pom::utils::find_path;
use pomomon_garden::prelude::*;
use std::collections::VecDeque;
// Helper to set up a Bevy App for pathfinding tests
/// Helper to set up a Bevy App for pathfinding tests
fn setup_pathfinding_app(
grid_width: u32,
grid_height: u32,