Fix dartdoc reference warnings on clamp function (#355)

diff --git a/lib/src/vector_math/vector2.dart b/lib/src/vector_math/vector2.dart
index 932953c..933c69f 100644
--- a/lib/src/vector_math/vector2.dart
+++ b/lib/src/vector_math/vector2.dart
@@ -329,7 +329,7 @@
     _v2storage[0] = _v2storage[0].abs();
   }
 
-  /// Clamp each entry n in this in the range [min[n]]-[max[n]].
+  /// Clamp each entry `n` in this in the range `[min[n]]-[max[n]]`.
   void clamp(Vector2 min, Vector2 max) {
     final minStorage = min._v2storage;
     final maxStorage = max._v2storage;
diff --git a/lib/src/vector_math/vector3.dart b/lib/src/vector_math/vector3.dart
index 575b478..25a6e26 100644
--- a/lib/src/vector_math/vector3.dart
+++ b/lib/src/vector_math/vector3.dart
@@ -476,7 +476,7 @@
     _v3storage[0] = _v3storage[0].abs();
   }
 
-  /// Clamp each entry n in this in the range [min[n]]-[max[n]].
+  /// Clamp each entry `n` in this in the range `[min[n]]-[max[n]]`.
   void clamp(Vector3 min, Vector3 max) {
     final minStorage = min.storage;
     final maxStorage = max.storage;
diff --git a/lib/src/vector_math/vector4.dart b/lib/src/vector_math/vector4.dart
index 2e86192..2de6647 100644
--- a/lib/src/vector_math/vector4.dart
+++ b/lib/src/vector_math/vector4.dart
@@ -371,7 +371,7 @@
     _v4storage[0] = _v4storage[0].abs();
   }
 
-  /// Clamp each entry n in this in the range [min[n]]-[max[n]].
+  /// Clamp each entry `n` in this in the range `[min[n]]-[max[n]]`.
   void clamp(Vector4 min, Vector4 max) {
     final minStorage = min.storage;
     final maxStorage = max.storage;
diff --git a/lib/src/vector_math_64/vector2.dart b/lib/src/vector_math_64/vector2.dart
index 60f3926..c53f9b3 100644
--- a/lib/src/vector_math_64/vector2.dart
+++ b/lib/src/vector_math_64/vector2.dart
@@ -329,7 +329,7 @@
     _v2storage[0] = _v2storage[0].abs();
   }
 
-  /// Clamp each entry n in this in the range [min[n]]-[max[n]].
+  /// Clamp each entry `n` in this in the range `[min[n]]-[max[n]]`.
   void clamp(Vector2 min, Vector2 max) {
     final minStorage = min._v2storage;
     final maxStorage = max._v2storage;
diff --git a/lib/src/vector_math_64/vector3.dart b/lib/src/vector_math_64/vector3.dart
index f72ea34..0cdf443 100644
--- a/lib/src/vector_math_64/vector3.dart
+++ b/lib/src/vector_math_64/vector3.dart
@@ -476,7 +476,7 @@
     _v3storage[0] = _v3storage[0].abs();
   }
 
-  /// Clamp each entry n in this in the range [min[n]]-[max[n]].
+  /// Clamp each entry `n` in this in the range `[min[n]]-[max[n]]`.
   void clamp(Vector3 min, Vector3 max) {
     final minStorage = min.storage;
     final maxStorage = max.storage;
diff --git a/lib/src/vector_math_64/vector4.dart b/lib/src/vector_math_64/vector4.dart
index 2dc2c78..b027d3b 100644
--- a/lib/src/vector_math_64/vector4.dart
+++ b/lib/src/vector_math_64/vector4.dart
@@ -371,7 +371,7 @@
     _v4storage[0] = _v4storage[0].abs();
   }
 
-  /// Clamp each entry n in this in the range [min[n]]-[max[n]].
+  /// Clamp each entry `n` in this in the range `[min[n]]-[max[n]]`.
   void clamp(Vector4 min, Vector4 max) {
     final minStorage = min.storage;
     final maxStorage = max.storage;