Skip to content

Commit fb9a00f

Browse files
authored
Merge PR #558 "Trim trailing whitespace" from per1234
Trim trailing whitespace
2 parents 758453d + 2307327 commit fb9a00f

28 files changed

+35
-35
lines changed

AsciiDoc_sample/AsciiDoc_Dictionary/AsciiDoc_Template-Dictionary.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
// This is a documentation file for authors and editors of the Arduino Manutius content platform.
55
// Below you can find a list of all the possible page elements with the corresponding
6-
// AsciiDoc syntax
6+
// AsciiDoc syntax
77

88

99
// GENERAL GUIDELINES
@@ -99,10 +99,10 @@ mailto:[email protected][This is an e-mail link]
9999
This is `code` in a sentence +
100100
`This is a whole line of code` +
101101

102-
// HINT: Please note that sometimes when copy-pasting code a few spaces can be added at the beginnng of each line of code.
102+
// HINT: Please note that sometimes when copy-pasting code a few spaces can be added at the beginnng of each line of code.
103103
// If that happens, please remove the extra spaces. Thanks!
104104

105-
This can be a lot more code
105+
This can be a lot more code
106106
[source,arduino]
107107
----
108108
for (int 1; i<=99; i++) {
@@ -115,7 +115,7 @@ for (int 1; i<=99; i++) {
115115

116116
// TABLES
117117
|===
118-
|Name of Column 1 |Name of Column 2 |Name of Column 3
118+
|Name of Column 1 |Name of Column 2 |Name of Column 3
119119

120120
|Cell in column 1, row 1
121121
|Cell in column 2, row 1
@@ -135,7 +135,7 @@ for (int 1; i<=99; i++) {
135135

136136
// IMAGES
137137

138-
// If you need to add an image to the Asciidoc please create a folder called 'attachments' in the same directory as the Asciidoc file,
138+
// If you need to add an image to the Asciidoc please create a folder called 'attachments' in the same directory as the Asciidoc file,
139139
// place the image there and reference it as shown below. Images can be in SVG and PNG format, max size 200KB.
140140

141141
// To include an image on its own line (i.e., a block image), use the image:: prefix in front of the file name and square brackets after it []

AsciiDoc_sample/Reference_Terms/AsciiDoc_Template-Parent_Of_Entities.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Parent of Entity Title
3-
categories: [ "Functions" ]
3+
categories: [ "Functions" ]
44
subCategories: [ "Subcategory Name" ]
55
---
66
// ARDUINO LANGUAGE REFERENCE TAG (above) ►►►►► ALWAYS INCLUDE IN YOUR FILE ◄◄◄◄◄
@@ -78,7 +78,7 @@ http://arduino.cc[serialEvent()]
7878

7979
[float]
8080
=== See also
81-
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
81+
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
8282
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
8383
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
8484

AsciiDoc_sample/Reference_Terms/AsciiDoc_Template-Single_Entity.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ image::http://arduino.cc/en/uploads/Main/ArduinoUno_R3_Front_450px.jpg[caption="
106106

107107
[float]
108108
=== See also
109-
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
109+
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
110110
// definitions: (please add the tag #DEFINITION#), and examples of Projects and Tutorials
111111
// examples: (please add the tag #EXAMPLE#)
112112

@@ -116,7 +116,7 @@ image::http://arduino.cc/en/uploads/Main/ArduinoUno_R3_Front_450px.jpg[caption="
116116
// use the syntax shown below. Please note that the file format is subsituted by attribute.
117117
// Please note that you always need to replace spaces that you might find in folder/file names with %20
118118
// The entire link to Reference pages must be lower case, regardless of the case of the folders and files in this repository.
119-
// For language tag, items will be automatically generated for any other item of the same subcategory,
119+
// For language tag, items will be automatically generated for any other item of the same subcategory,
120120
// no need to add links to other pages of the same subcategory
121121
// if you don't include this section, a minimal version with only the other pages of the same subcategory will be generated.
122122
* #LANGUAGE# link:../AsciiDoc_Template-Parent_Of_Entities[Parent Of Entities]

Language/Functions/Analog IO/analogRead.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ subCategories: [ "Analog I/O" ]
1212

1313
[float]
1414
=== Description
15-
Reads the value from the specified analog pin. Arduino boards contain a multichannel, 10-bit analog to digital converter. This means that it will map input voltages between 0 and the operating voltage(5V or 3.3V) into integer values between 0 and 1023. On an Arduino UNO, for example, this yields a resolution between readings of: 5 volts / 1024 units or, 0.0049 volts (4.9 mV) per unit. See the table below for the usable pins, operating voltage and maximum resolution for some Arduino boards.
15+
Reads the value from the specified analog pin. Arduino boards contain a multichannel, 10-bit analog to digital converter. This means that it will map input voltages between 0 and the operating voltage(5V or 3.3V) into integer values between 0 and 1023. On an Arduino UNO, for example, this yields a resolution between readings of: 5 volts / 1024 units or, 0.0049 volts (4.9 mV) per unit. See the table below for the usable pins, operating voltage and maximum resolution for some Arduino boards.
1616

1717
The input range can be changed using link:../analogreference[analogReference()], while the resolution can be changed (only for Zero, Due and MKR boards) using link:../../zero-due-mkr-family/analogreadresolution[analogReadResolution()].
1818

Language/Functions/Characters/isAlpha.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Characters" ]
1717

1818
[float]
1919
=== Description
20-
Analyse if a char is alpha (that is a letter). Returns true if thisChar contains a letter.
20+
Analyse if a char is alpha (that is a letter). Returns true if thisChar contains a letter.
2121
[%hardbreaks]
2222

2323

Language/Functions/Characters/isAlphaNumeric.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Characters" ]
1717

1818
[float]
1919
=== Description
20-
Analyse if a char is alphanumeric (that is a letter or a numbers). Returns true if thisChar contains either a number or a letter.
20+
Analyse if a char is alphanumeric (that is a letter or a numbers). Returns true if thisChar contains either a number or a letter.
2121
[%hardbreaks]
2222

2323

Language/Functions/Characters/isAscii.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Characters" ]
1717

1818
[float]
1919
=== Description
20-
Analyse if a char is Ascii. Returns true if thisChar contains an Ascii character.
20+
Analyse if a char is Ascii. Returns true if thisChar contains an Ascii character.
2121
[%hardbreaks]
2222

2323

Language/Functions/Characters/isControl.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Characters" ]
1717

1818
[float]
1919
=== Description
20-
Analyse if a char is a control character. Returns true if thisChar is a control character.
20+
Analyse if a char is a control character. Returns true if thisChar is a control character.
2121
[%hardbreaks]
2222

2323

Language/Functions/Characters/isDigit.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Characters" ]
1717

1818
[float]
1919
=== Description
20-
Analyse if a char is a digit (that is a number). Returns true if thisChar is a number.
20+
Analyse if a char is a digit (that is a number). Returns true if thisChar is a number.
2121
[%hardbreaks]
2222

2323

Language/Functions/Characters/isGraph.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ subCategories: [ "Characters" ]
1717

1818
[float]
1919
=== Description
20-
Analyse if a char is printable with some content (space is printable but has no content). Returns true if thisChar is printable.
20+
Analyse if a char is printable with some content (space is printable but has no content). Returns true if thisChar is printable.
2121
[%hardbreaks]
2222

2323

0 commit comments

Comments
 (0)