v / cmd / tools / vvet / tests / brackets_in_documentation_comment_no_warn.vv
9 lines · 8 sloc · 184 bytes · 713c95fcc85b251b79da41d59696112a2247a6a4
Raw
1
2// normalize_vector Normalizes a vector
3//
4// Example:
5// ```v
6// vector := Vector{3, 4}
7// normalize_vector(vector) // Vector{0.6, 0.8}
8// ```
9pub fn normalize_vector(vector f32) {}
10