Skip to content

Commit c23f9b4

Browse files
author
Akshay Sharma
committed
Fix Links in multuple files in Varibles
1 parent 42f0b94 commit c23f9b4

File tree

16 files changed

+28
-28
lines changed

16 files changed

+28
-28
lines changed

Language/Variables/Data Types/array.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ For a complete program that demonstrates the use of arrays, see the (http://www.
9393
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
9494
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
9595
[role="definition"]
96-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration] +
97-
* #DEFINITION# link:PROGMEM{ext-relative}[PROGMEM]
96+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration] +
97+
* #DEFINITION# link:../Utilities/PROGMEM{ext-relative}[PROGMEM]
9898

9999
--
100100
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/boolean.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ void loop()
6767
[role="definition"]
6868
* #DEFINITION# link:constants{ext-relative}[constants] +
6969
* #DEFINITION# link:boolean{ext-relative}[boolean operators] +
70-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
70+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
7171

7272
--
7373
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/byte.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ A byte stores an 8-bit unsigned number, from 0 to 255.
4747
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
4848
[role="definition"]
4949
* #DEFINITION# link:word{ext-relative}[word] +
50-
* #DEFINITION# link:byteCast{ext-relative}[byte()] +
51-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
50+
* #DEFINITION# link:../Conversion/byteCast{ext-relative}[byte()] +
51+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
5252
--
5353
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/char.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The char datatype is a signed type, meaning that it encodes numbers from -128 to
5454
* #DEFINITION# link:array{ext-relative}[array]
5555

5656
[role="language"]
57-
* #LANGUAGE# link:println{ext-relative}[Serial.println]
57+
* #LANGUAGE# link:../../Functions/Communication/Serial/println{ext-relative}[Serial.println]
5858

5959
--
6060
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/float.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ If doing math with floats, you need to add a decimal point, otherwise it will be
7171
[role="definition"]
7272
* #DEFINITION# link:int{ext-relative}[int] +
7373
* #DEFINITION# link:double{ext-relative}[double] +
74-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
74+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
7575

7676
--
7777
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/int.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ int x;
7676
* #DEFINITION# link:unsignedInt{ext-relative}[unsigned int] +
7777
* #DEFINITION# link:Long{ext-relative}[long] +
7878
* #DEFINITION# link:unsignedLong{ext-relative}[unsigned long] +
79-
* #DEFINITION# link:integerConstant{ext-relative}[Integer Constants] +
80-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
79+
* #DEFINITION# link:../Constants/integerConstant{ext-relative}[Integer Constants] +
80+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
8181
--
8282
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/long.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ If doing math with integers, at least one of the numbers must be followed by an
5757
* #DEFINITION# link:int{ext-relative}[int] +
5858
* #DEFINITION# link:unsignedInt{ext-relative}[unsigned int] +
5959
* #DEFINITION# link:unsignedLong{ext-relative}[unsigned long] +
60-
* #DEFINITION# link:integerConstant{ext-relative}[Integer Constants] +
61-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
60+
* #DEFINITION# link:../Constants/integerConstant{ext-relative}[Integer Constants] +
61+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
6262

6363
--
6464
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/short.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ On all Arduinos (ATMega and ARM based) a short stores a 16-bit (2-byte) value. T
5656
* #DEFINITION# link:unsignedInt{ext-relative}[unsigned int] +
5757
* #DEFINITION# link:long{ext-relative}[long] +
5858
* #DEFINITION# link:unsignedLong{ext-relative}[unsigned long] +
59-
* #DEFINITION# link:integerConstant{ext-relative}[Integer Constants] +
59+
* #DEFINITION# link:../Constants/integerConstant{ext-relative}[Integer Constants] +
6060
* #DEFINITION# link:unsignedInt{ext-relative}[unsigned int] +
61-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
61+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
6262
--
6363
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/stringObject.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ For reference, character arrays are referred to as strings with a small s, and i
5454
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
5555
[role="definition"]
5656
* #DEFINITION# link:string{ext-relative}[string] :character arrays +
57-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
57+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
5858

5959
--
6060
// HOW TO USE SECTION ENDS

Language/Variables/Data Types/unsignedChar.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ unsigned char myChar = 240;
5252
* #DEFINITION# link:array{ext-relative}[array]
5353

5454
[role="language"]
55-
* #LANGUAGE# link:println{ext-relative}[Serial.println]
55+
* #LANGUAGE# link:../../Functions/Communication/Serial/println{ext-relative}[Serial.println]
5656

5757
--
5858
// HOW TO USE SECTION ENDS

0 commit comments

Comments
 (0)