Skip to content

Commit 6e2276c

Browse files
committed
Removed unnecessary br tags from .pde example code
1 parent 4f27006 commit 6e2276c

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

content/examples/Basics/Control/Conditionals1/Conditionals1.pde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Conditions are like questions.
55
* They allow a program to decide to take one action if
66
* the answer to a question is "true" or to do another action
7-
* if the answer to the question is "false."<br />
7+
* if the answer to the question is "false."
88
* The questions asked within a program are always logical
99
* or relational statements. For example, if the variable 'i' is
1010
* equal to zero then draw a line.

content/examples/Basics/Data/CharactersStrings/CharactersStrings.pde

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
* The character datatype, abbreviated as char, stores letters and
55
* symbols in the Unicode format, a coding system developed to support
66
* a variety of world languages. Characters are distinguished from other
7-
* symbols by putting them between single quotes ('P').<br />
8-
* <br />
7+
* symbols by putting them between single quotes ('P').
8+
*
99
* A string is a sequence of characters. A string is noted by surrounding
1010
* a group of letters with double quotes ("Processing").
1111
* Chars and strings are most often used with the keyboard methods,
12-
* to display text to the screen, and to load images or files.<br />
13-
* <br />
12+
* to display text to the screen, and to load images or files.
13+
*
1414
* The String datatype must be capitalized because it is a complex datatype.
1515
* A String is actually a class with its own methods, some of which are
1616
* featured below.

content/examples/Basics/Lights/Directional/Directional.pde

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* scatters in all directions.
99
*/
1010

11-
1211
void setup() {
1312
size(640, 360, P3D);
1413
noStroke();

0 commit comments

Comments
 (0)