Skip to content

Commit d47a268

Browse files
committed
Trim trailing whitespace
1 parent c230255 commit d47a268

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
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/External Interrupts/attachInterrupt.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For more information on interrupts, see http://gammon.com.au/interrupts[Nick Gam
5959
[float]
6060
=== 문법
6161
`attachInterrupt(digitalPinToInterrupt(pin), ISR, mode);` (권고) +
62-
`attachInterrupt(interrupt, ISR, mode);` (권하지 않음) +
62+
`attachInterrupt(interrupt, ISR, mode);` (권하지 않음) +
6363
`attachInterrupt(pin, ISR, mode);` (권하지 않음 Arduino Due, Zero, MKR1000, 101 전용)
6464

6565

Language/Functions/Math/constrain.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ b: x가 b보다 크면
5656
이 코드는 센서 값을 10에서 150 사이로 제한.
5757
[source,arduino]
5858
----
59-
sensVal = constrain(sensVal, 10, 150); // 센서 값을 10에서 150 사이로 제한.
59+
sensVal = constrain(sensVal, 10, 150); // 센서 값을 10에서 150 사이로 제한.
6060
----
6161

6262
--

Language/Functions/Random Numbers/randomSeed.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ Conversely, it can occasionally be useful to use pseudo-random sequences that re
4848
--
4949

5050
[float]
51-
===
51+
===
5252
// Describe what the example code is all about and add relevant code   ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄
53-
The code generates a pseudo-random number and sends the generated number to the serial port.
53+
The code generates a pseudo-random number and sends the generated number to the serial port.
5454

5555
[source,arduino]
5656
----

0 commit comments

Comments
 (0)