Added indentation to doc comment

This commit is contained in:
Pnoenix 2025-03-26 18:21:13 +01:00 committed by Pnoenix
parent d719aeb4c9
commit 13a7a850f8

View File

@ -828,7 +828,7 @@ impl Mesh {
///
/// Returns [`Err(MeshMergeError)`](MeshMergeError) if any of the following conditions are met:
/// * the vertex attribute values of `other` are incompatible with `self`.
/// For example, [`VertexAttributeValues::Float32`] is incompatible with [`VertexAttributeValues::Float32x3`].
/// For example, [`VertexAttributeValues::Float32`] is incompatible with [`VertexAttributeValues::Float32x3`].
/// * the primitive topology of `other` doesn't match the primitive topology of `self`
pub fn merge(&mut self, other: &Mesh) -> Result<(), MeshMergeError> {
use VertexAttributeValues::*;