Skip to content

Commit 78c9e2c

Browse files
committed
Link to the "article" in the docs instead of saying "article"
1 parent 13a0d6e commit 78c9e2c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/classes/Basis.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
A 3×3 matrix used for representing 3D rotation and scale. Usually used as an orthogonal basis for a [Transform3D].
88
Contains 3 vector fields X, Y and Z as its columns, which are typically interpreted as the local basis vectors of a transformation. For such use, it is composed of a scaling and a rotation matrix, in that order (M = R.S).
99
Basis can also be accessed as an array of 3D vectors. These vectors are usually orthogonal to each other, but are not necessarily normalized (due to scaling).
10-
For more information, read the "Matrices and transforms" documentation article.
10+
For a general introduction, see the [url=$DOCS_URL/tutorials/math/matrices_and_transforms.html]Matrices and transforms[/url] tutorial.
1111
</description>
1212
<tutorials>
1313
<link title="Math documentation index">$DOCS_URL/tutorials/math/index.html</link>

doc/classes/InputEventMIDI.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
If the message is [constant MIDI_MESSAGE_CONTROL_CHANGE], this indicates the controller value, otherwise this is zero. Controllers include devices such as pedals and levers.
7676
</member>
7777
<member name="instrument" type="int" setter="set_instrument" getter="get_instrument" default="0">
78-
The instrument of this input event. This value ranges from 0 to 127. Refer to the instrument list on the General MIDI wikipedia article to see a list of instruments, except that this value is 0-index, so subtract one from every number on that chart. A standard piano will have an instrument number of 0.
78+
The instrument of this input event. This value ranges from 0 to 127. Refer to the instrument list for [url=https://en.wikipedia.org/wiki/General_MIDI#Program_change_events]General MIDI[/url] to see a list of instruments, except that this value is 0-index, so subtract one from every number on that chart. A standard piano will have an instrument number of 0.
7979
</member>
8080
<member name="message" type="int" setter="set_message" getter="get_message" enum="MIDIMessage" default="0">
8181
Returns a value indicating the type of message for this MIDI signal. This is a member of the [enum MIDIMessage] enum.

doc/classes/Transform2D.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</brief_description>
66
<description>
77
A 2×3 matrix (2 rows, 3 columns) used for 2D linear transformations. It can represent transformations such as translation, rotation, and scaling. It consists of three [Vector2] values: [member x], [member y], and the [member origin].
8-
For more information, read the "Matrices and transforms" documentation article.
8+
For a general introduction, see the [url=$DOCS_URL/tutorials/math/matrices_and_transforms.html]Matrices and transforms[/url] tutorial.
99
</description>
1010
<tutorials>
1111
<link title="Math documentation index">$DOCS_URL/tutorials/math/index.html</link>

doc/classes/Transform3D.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</brief_description>
66
<description>
77
A 3×4 matrix (3 rows, 4 columns) used for 3D linear transformations. It can represent transformations such as translation, rotation, and scaling. It consists of a [member basis] (first 3 columns) and a [Vector3] for the [member origin] (last column).
8-
For more information, read the "Matrices and transforms" documentation article.
8+
For a general introduction, see the [url=$DOCS_URL/tutorials/math/matrices_and_transforms.html]Matrices and transforms[/url] tutorial.
99
</description>
1010
<tutorials>
1111
<link title="Math documentation index">$DOCS_URL/tutorials/math/index.html</link>

0 commit comments

Comments
 (0)