Skip to content

Commit 249c039

Browse files
committed
fix typo
1 parent 3e0bb82 commit 249c039

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/juce_opengl/geometry/juce_Vector3D.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ namespace juce
7171
/*Multiply and divide in method to avoid using * and / operators (* is used for dot product) */
7272
void multiply(Vector3D other) const noexcept { x *= other.x; y *= other.y, z *= other.z; }
7373
Vector3D multiplied(Vector3D other) const noexcept { return { x * other.x, y * other.y, z * other.z }; }
74-
void divide(Vector3D other) const noexcept { x /= other.x; y /= other.y; z /= other.z };
74+
void divide(Vector3D other) const noexcept { x /= other.x; y /= other.y; z /= other.z; };
7575
Vector3D divided(Vector3D other) const noexcept { return { x / other.x, y / other.y, z / other.z }; }
7676

7777
/** Returns the dot-product of these two vectors. */

0 commit comments

Comments
 (0)