diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index f41cc3ec565..74cacb0919b 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -10346,7 +10346,7 @@
- Add a custom filter. Filter format is: "mask ; description", example (C++): dialog-<add_filter("*.png ; PNG Images");
+ Add a custom filter. Filter format is: "mask ; description", example (C++): dialog->add_filter("*.png ; PNG Images");
@@ -36726,6 +36726,7 @@
+ Returns the angle in radians between the two vectors.
@@ -36734,12 +36735,14 @@
+ Returns the angle in radians between the line connecting the two points and the x coordinate.
+ Returns the result of atan2 when called with the Vector's x and y as parameters.
@@ -36754,6 +36757,7 @@
+ Cubicly interpolates between this Vector and "b", using "pre_a" and "post_b" as handles, and returning the result at position "t".
@@ -36762,6 +36766,7 @@
+ Returns the squared distance to vector "b". Prefer this function over "distance_to" if you need to sort vectors or need the squared distance for some formula.
@@ -36799,6 +36804,7 @@
+ Returns the ratio of X to Y.
@@ -36812,6 +36818,7 @@
+ Returns the squared length of the vector. Prefer this function over "length" if you need to sort vectors or need the squared length for some formula.
@@ -36822,7 +36829,7 @@
- Returns the result of the linear interpolation between this vector and "b", by amount "i".
+ Returns the result of the linear interpolation between this vector and "b", by amount "t".
@@ -36838,6 +36845,7 @@
+ Reflects/mirrors the vector around another vector.
@@ -36846,6 +36854,7 @@
+ Rotates the vector by "phi" radians.
@@ -36854,6 +36863,7 @@
+ Slides the vector by the other vector.
@@ -36862,12 +36872,14 @@
+ Snaps the vector to a grid with the given size.
+ Returns a perpendicular vector.
@@ -36878,6 +36890,7 @@
+ Constructs a new Vector2 from the given x and y.
@@ -36896,8 +36909,10 @@
+ An Array of Vector2's.
+ An Array specifically designed to hold Vector2's.
@@ -36906,18 +36921,21 @@
+ Get the Vector2 at the given index.
+ Insert a new Vector2.
+ Set the size of the Vector2Array. If larger than the current size it will reserve some space beforehand, and if it is smaller it will cut off the array.
@@ -36926,12 +36944,14 @@
+ Set the Vector2 at the given index.
+ Returns the size of the array.
@@ -36940,6 +36960,7 @@
+ Constructs a new Vector2Array. Optionally, you can pass in an Array that will be converted.