Skip to content

Commit 9989625

Browse files
committed
Removed function and contants declaration reference page links
1 parent 1082ace commit 9989625

12 files changed

+6
-20
lines changed

Language/Variables/Data Types/array.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ For a complete program that demonstrates the use of arrays, see the (http://www.
9999
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
100100
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
101101
[role="definition"]
102-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration] +
103102
* #DEFINITION# link:../../utilities/PROGMEM[PROGMEM]
104103

105104
--

Language/Variables/Data Types/boolean.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ void loop()
7373
[role="definition"]
7474
* #DEFINITION# link:../contants/constants[constants] +
7575
* #DEFINITION# link:../boolean[boolean operators] +
76-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
7776

7877
--
7978
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/byte.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,5 @@ A byte stores an 8-bit unsigned number, from 0 to 255.
5454
[role="definition"]
5555
* #DEFINITION# link:../word[word] +
5656
* #DEFINITION# link:../../conversion/byteCast[byte()] +
57-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
5857
--
5958
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/float.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ If doing math with floats, you need to add a decimal point, otherwise it will be
7777
[role="definition"]
7878
* #DEFINITION# link:../int[int] +
7979
* #DEFINITION# link:../double[double] +
80-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
80+
8181

8282
--
8383
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/int.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,6 @@ int x;
8383
* #DEFINITION# link:../long[long] +
8484
* #DEFINITION# link:../unsignedLong[unsigned long] +
8585
* #DEFINITION# link:../../constants/integerConstants[Integer Constants] +
86-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
86+
8787
--
8888
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/long.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ If doing math with integers, at least one of the numbers must be followed by an
6464
* #DEFINITION# link:../unsignedInt[unsigned int] +
6565
* #DEFINITION# link:../unsignedLong[unsigned long] +
6666
* #DEFINITION# link:../../constants/integerConstants[Integer Constants] +
67-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
67+
6868

6969
--
7070
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/short.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ On all Arduinos (ATMega and ARM based) a short stores a 16-bit (2-byte) value. T
6464
* #DEFINITION# link:../unsignedLong[unsigned long] +
6565
* #DEFINITION# link:../../constants/integerConstants[Integer Constants] +
6666
* #DEFINITION# link:../unsignedInt[unsigned int] +
67-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
67+
6868
--
6969
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/string.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,5 @@ for (int i = 0; i < 6; i++){
114114
* #DEFINITION# link:../../utilities/PROGMEM[PROGMEM] +
115115
* #DEFINITION# link:../unsignedInt[unsigned int] +
116116

117-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
118117
--
119118
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/stringObject.adoc

-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ For reference, character arrays are referred to as strings with a small s, and i
6060
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
6161
[role="definition"]
6262
* #DEFINITION# link:../string[string] :character arrays +
63-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
6463

6564
--
6665
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/unsignedInt.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ unsigned int x
7575
* #DEFINITION# link:../Long[long] +
7676
* #DEFINITION# link:../unsignedLong[unsigned long] +
7777
* #DEFINITION# link:../../constants/integerConstants[Integer Constants] +
78-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
78+
7979

8080
--
8181
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/unsignedLong.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void loop()
7777
* #DEFINITION# link:../unsignedInt[unsigned int] +
7878
* #DEFINITION# link:../long[long] +
7979
* #DEFINITION# link:../../constants/integerConstants[Integer Constants] +
80-
* #DEFINITION# link:../../variableDeclaration[Variable Declaration]
80+
8181

8282
--
8383
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/void.adoc

-9
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,5 @@ void loop()
5454
[%hardbreaks]
5555

5656

57-
[float]
58-
=== See also
59-
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
60-
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
61-
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
62-
[role="definition"]
63-
* #DEFINITION# link:../../../functions/functionDeclaration[function declaration]
64-
65-
6657
--
6758
// HOW TO USE SECTION ENDS

0 commit comments

Comments
 (0)