Skip to content

Commit c23f9b4

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

16 files changed

+28
-28
lines changed

Diff for: Language/Variables/Data Types/array.adoc

+2-2
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

Diff for: Language/Variables/Data Types/boolean.adoc

+1-1
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

Diff for: Language/Variables/Data Types/byte.adoc

+2-2
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

Diff for: Language/Variables/Data Types/char.adoc

+1-1
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

Diff for: Language/Variables/Data Types/float.adoc

+1-1
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

Diff for: Language/Variables/Data Types/int.adoc

+2-2
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

Diff for: Language/Variables/Data Types/long.adoc

+2-2
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

Diff for: Language/Variables/Data Types/short.adoc

+2-2
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

Diff for: Language/Variables/Data Types/stringObject.adoc

+1-1
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

Diff for: Language/Variables/Data Types/unsignedChar.adoc

+1-1
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

Diff for: Language/Variables/Data Types/unsignedInt.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ unsigned int x
6868
* #DEFINITION# link:int{ext-relative}[int] +
6969
* #DEFINITION# link:Long{ext-relative}[long] +
7070
* #DEFINITION# link:unsignedLong{ext-relative}[unsigned long] +
71-
* #DEFINITION# link:integerConstant{ext-relative}[Integer Constants] +
72-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
71+
* #DEFINITION# link:../Constants/integerConstant{ext-relative}[Integer Constants] +
72+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
7373

7474
--
7575
// HOW TO USE SECTION ENDS

Diff for: Language/Variables/Data Types/unsignedLong.adoc

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
[float]
1414
=== Description
15-
Unsigned long variables are extended size variables for number storage, and store 32 bits (4 bytes). Unlike standard longs unsigned longs won't store negative numbers, making their range from 0 to 4,294,967,295 (2^32 - 1).
15+
Unsigned long variables are extended size variables for number storage, and store 32 bits (4 bytes). Unlike standard longs unsigned longs won't store negative numbers, making their range from 0 to 4,294,967,295 (2^32 - 1).
1616
[%hardbreaks]
1717

1818
[float]
@@ -21,7 +21,7 @@ Unsigned long variables are extended size variables for number storage, and stor
2121
`unsigned long var = val;`
2222

2323
`var` - your long variable name
24-
`val` - the value you assign to that variable
24+
`val` - the value you assign to that variable
2525
[%hardbreaks]
2626

2727
--
@@ -62,16 +62,16 @@ void loop()
6262

6363
[float]
6464
=== See also
65-
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
65+
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
6666
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
6767
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
6868

6969
* #DEFINITION# link:byte{ext-relative}[byte] +
7070
* #DEFINITION# link:int{ext-relative}[int] +
7171
* #DEFINITION# link:unsignedInt{ext-relative}[unsigned int] +
7272
* #DEFINITION# link:long{ext-relative}[long] +
73-
* #DEFINITION# link:integerConstant{ext-relative}[Integer Constants] +
74-
* #DEFINITION# link:variableDeclaration{ext-relative}[Variable Declaration]
73+
* #DEFINITION# link:../Constants/integerConstant{ext-relative}[Integer Constants] +
74+
* #DEFINITION# link:../variableDeclaration{ext-relative}[Variable Declaration]
7575

7676
--
7777
// HOW TO USE SECTION ENDS

Diff for: Language/Variables/Data Types/void.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void loop()
5454
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
5555
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
5656
[role="definition"]
57-
* #DEFINITION# link:functionDeclaration{ext-relative}[function declaration]
57+
* #DEFINITION# link:../../Functions/functionDeclaration{ext-relative}[function declaration]
5858

5959

6060
--

Diff for: Language/Variables/Utilities/PROGMEM.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const dataType variableName[] PROGMEM = {data0, data1, data3...};`
2929
`dataType` - any variable type
3030
`variableName` - the name for your array of data
3131

32-
Note that because PROGMEM is a variable modifier, there is no hard and fast rule about where it should go, so the Arduino compiler accepts all of the definitions below, which are also synonymous. However experiments have indicated that, in various versions of Arduino (having to do with GCC version), PROGMEM may work in one location and not in another. The "string table" example below has been tested to work with Arduino 13. Earlier versions of the IDE may work better if PROGMEM is included after the variable name.
32+
Note that because PROGMEM is a variable modifier, there is no hard and fast rule about where it should go, so the Arduino compiler accepts all of the definitions below, which are also synonymous. However experiments have indicated that, in various versions of Arduino (having to do with GCC version), PROGMEM may work in one location and not in another. The "string table" example below has been tested to work with Arduino 13. Earlier versions of the IDE may work better if PROGMEM is included after the variable name.
3333

3434
`const dataType variableName[] PROGMEM = {}; // use this form` +
3535
`const PROGMEM dataType variableName[] = {}; // or this one`+
@@ -179,7 +179,7 @@ void loop()
179179
* #EXAMPLE# http://www.arduino.cc/playground/Learning/Memory[Types of memory available on an Arduino board]
180180

181181
[role="definition"]
182-
* #DEFINITION# link:array{ext-relative}[array] +
183-
* #DEFINITION# link:string{ext-relative}[string]
182+
* #DEFINITION# link:../Data%20Types/array{ext-relative}[array] +
183+
* #DEFINITION# link:../Data%20Types/string{ext-relative}[string]
184184
--
185185
// HOW TO USE SECTION ENDS

Diff for: Language/Variables/Variable Scope & Qualifiers/const.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ You can use either `const` or `#define` for creating numeric or string constants
6161
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
6262
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
6363
[role="language"]
64-
* #LANGUAGE# link:define{ext-relative}[[#define] +
64+
* #LANGUAGE# link:../../Structures/Further%20Syntax/define{ext-relative}[[#define] +
6565
* #LANGUAGE# link:voletile{ext-relative}[voletile]
6666

6767

Diff for: Language/Variables/Variable Scope & Qualifiers/voletile.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void blink()
6969
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
7070
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
7171
[role="language"]
72-
* #LANGUAGE# link:attachInterrupt{ext-relative}[attachInterrupt]
72+
* #LANGUAGE# link:../../Functions/External%20Interrupts/attachInterrupt{ext-relative}[attachInterrupt]
7373

7474

7575
--

0 commit comments

Comments
 (0)