Skip to content

Commit 89ec284

Browse files
committed
Small changes that affect many files, mostly &lt; to < and &gt; to >
1 parent 748b5a8 commit 89ec284

File tree

100 files changed

+148
-147
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+148
-147
lines changed

content/api_en/LIB_net/Client.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void setup() {
2424
}
2525
2626
void draw() {
27-
if (myClient.available() &gt; 0) {
27+
if (myClient.available() > 0) {
2828
dataIn = myClient.read();
2929
}
3030
background(dataIn);

content/api_en/LIB_net/Client_available.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ void setup() {
2525
}
2626
2727
void draw() {
28-
if (myClient.available() &gt; 0) {
28+
if (myClient.available() > 0) {
2929
dataIn = myClient.read();
3030
}
3131
background(dataIn);

content/api_en/LIB_net/Client_clear.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void setup() {
3131
}
3232
3333
void draw() {
34-
if (myClient.available() &gt; 0) {
34+
if (myClient.available() > 0) {
3535
background(0);
3636
// Read input until we get a byte of value 10 (ASCII linefeed):
3737
inString = myClient.readStringUntil(interesting);

content/api_en/LIB_net/Client_read.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void setup() {
2727
}
2828
2929
void draw() {
30-
if (myClient.available() &gt; 0) {
30+
if (myClient.available() > 0) {
3131
dataIn = myClient.read();
3232
}
3333
background(dataIn);

content/api_en/LIB_net/Client_readBytes.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ void setup() {
3030
}
3131
3232
void draw() {
33-
if (myClient.available() &gt; 0) {
33+
if (myClient.available() > 0) {
3434
background(0);
3535
// Read in the bytes
3636
int byteCount = myClient.readBytes(byteBuffer);
37-
if (byteCount &gt; 0 ) {
37+
if (byteCount > 0 ) {
3838
// Convert the byte array to a String
3939
String myString = new String(byteBuffer);
4040
// Show it text area

content/api_en/LIB_net/Client_readBytesUntil.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void setup() {
3232
}
3333
3434
void draw() {
35-
if (myClient.available() &gt; 0) {
35+
if (myClient.available() > 0) {
3636
background(0);
3737
// Read until we get a linefeed
3838
int byteCount = myClient.readBytesUntil(interesting, byteBuffer);

content/api_en/LIB_net/Client_readChar.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ void setup() {
2424
}
2525
2626
void draw() {
27-
if (myClient.available() &gt; 0) {
27+
if (myClient.available() > 0) {
2828
charIn = myClient.readChar();
2929
println(dataIn);
3030
}

content/api_en/LIB_net/Client_readString.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void setup() {
2828
}
2929
3030
void draw() {
31-
if (myClient.available() &gt; 0) {
31+
if (myClient.available() > 0) {
3232
background(0);
3333
inString = myClient.readString();
3434
println(inString);

content/api_en/LIB_net/Client_readStringUntil.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void setup() {
3232
}
3333
3434
void draw() {
35-
if (myClient.available() &gt; 0) {
35+
if (myClient.available() > 0) {
3636
background(0);
3737
inString = myClient.readStringUntil(interesting);
3838
println(inString);

content/api_en/LIB_net/Client_stop.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ void setup() {
2626
}
2727
2828
void draw() {
29-
if (myClient.available() &gt; 0) {
29+
if (myClient.available() > 0) {
3030
dataIn = myClient.read();
3131
}
3232
background(dataIn);

0 commit comments

Comments
 (0)