Skip to content

Commit 2eac551

Browse files
committed
Comment clean-up: edits for consistency, ensured all variable names in single quotes, print values in double quotes
1 parent 6b5097c commit 2eac551

108 files changed

Lines changed: 328 additions & 273 deletions

Some content is hidden

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

content/api_en/LIB_net/Client.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void setup() {
1919
size(200, 200);
2020
// Connect to the local machine at port 5204.
2121
// This example will not run if you haven't
22-
// previously started a server on this port
22+
// previously started a server on this port.
2323
myClient = new Client(this, "127.0.0.1", 5204);
2424
}
2525

content/api_en/LIB_net/Client_available.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void setup() {
2020
size(200, 200);
2121
// Connect to the local machine at port 5204.
2222
// This example will not run if you haven't
23-
// previously started a server on this port
23+
// previously started a server on this port.
2424
myClient = new Client(this, "127.0.0.1", 5204);
2525
}
2626

content/api_en/LIB_net/Client_clear.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Example by Tom Igoe
1616
1717
// Creates a client that listens for input until it gets a
18-
// linefeed and then throws the rest of the input away
18+
// linefeed and then throws the rest of the input away.
1919
2020
import processing.net.*;
2121
Client myClient;
@@ -26,7 +26,7 @@ void setup() {
2626
size (300, 100);
2727
// Connect to the local machine at port 10002.
2828
// This example will not run if you haven't
29-
// previously started a server on this port
29+
// previously started a server on this port.
3030
myClient = new Client(this, "127.0.0.1", 10002);
3131
}
3232

content/api_en/LIB_net/Client_ip.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void setup() {
2121
size(200, 200);
2222
// Connect to the local machine at port 5204.
2323
// This example will not run if you haven't
24-
// previously started a server on this port
24+
// previously started a server on this port.
2525
myClient = new Client(this, "127.0.0.1", 5204);
2626
println(myClient.ip());
2727
}

content/api_en/LIB_net/Client_read.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void setup() {
2222
size(200, 200);
2323
// Connect to the local machine at port 5204.
2424
// This example will not run if you haven't
25-
// previously started a server on this port
25+
// previously started a server on this port.
2626
myClient = new Client(this, "127.0.0.1", 5204);
2727
}
2828

content/api_en/LIB_net/Client_readBytes.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Example by Tom Igoe
1616
1717
// Creates a client that listens for input and puts
18-
// the bytes it gets into a byte[] buffer
18+
// the bytes it gets into a byte[] buffer.
1919
2020
import processing.net.*;
2121
Client myClient;
@@ -25,7 +25,7 @@ void setup() {
2525
size (300, 100);
2626
// Connect to the local machine at port 10002.
2727
// This example will not run if you haven't
28-
// previously started a server on this port
28+
// previously started a server on this port.
2929
myClient = new Client(this, "127.0.0.1", 10002);
3030
}
3131

content/api_en/LIB_net/Client_readBytesUntil.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
// Creates a client that listens for input
1818
// until it gets a linefeed character, and puts
19-
// the bytes it gets into a byte[] buffer
19+
// the bytes it gets into a byte[] buffer.
2020
2121
import processing.net.*;
2222
Client myClient;
@@ -27,7 +27,7 @@ void setup() {
2727
size (300, 100);
2828
// Connect to the local machine at port 10002.
2929
// This example will not run if you haven't
30-
// previously started a server on this port
30+
// previously started a server on this port.
3131
myClient = new Client(this, "127.0.0.1", 10002);
3232
}
3333

content/api_en/LIB_net/Client_readString.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void setup() {
2323
size (300, 100);
2424
// Connect to the local machine at port 10002.
2525
// This example will not run if you haven't
26-
// previously started a server on this port
26+
// previously started a server on this port.
2727
myClient = new Client(this, "127.0.0.1", 10002);
2828
}
2929

content/api_en/LIB_net/Client_readStringUntil.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
// Creates a client that listens for input until it
1818
// gets a linefeed character,and puts the bytes it gets
19-
// into a byte[] buffer
19+
// into a byte[] buffer.
2020
2121
import processing.net.*;
2222
Client myClient;
@@ -27,7 +27,7 @@ void setup() {
2727
size (300, 100);
2828
// Connect to the local machine at port 10002.
2929
// This example will not run if you haven't
30-
// previously started a server on this port
30+
// previously started a server on this port.
3131
myClient = new Client(this, "127.0.0.1", 10002);
3232
}
3333

content/api_en/LIB_net/Client_stop.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ void setup() {
2020
size(200, 200);
2121
// Connect to the local machine at port 5204.
2222
// This example will not run if you haven't
23-
// previously started a server on this port
23+
// previously started a server on this port.
2424
myClient = new Client(this, "127.0.0.1", 5204);
2525
println(myClient.ip());
2626
}

0 commit comments

Comments
 (0)