1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/vvet/tests/brackets_in_documentation_comment_no_warn.vv

10 lines
184 B
V

// normalize_vector Normalizes a vector
//
// Example:
// ```v
// vector := Vector{3, 4}
// normalize_vector(vector) // Vector{0.6, 0.8}
// ```
pub fn normalize_vector(vector f32) {}