File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ void setup() {
12
12
" https://www.google.com/search?q=arduino"
13
13
);
14
14
15
- Serial.print (" parsed url schema: \" " );
15
+ Serial.print (" parsed URL schema: \" " );
16
16
Serial.print (url.schema ());
17
- Serial.print (" \"\n parsed url host: \" " );
17
+ Serial.print (" \"\n parsed URL host: \" " );
18
18
Serial.print (url.host ());
19
- Serial.print (" \"\n parsed url path: \" " );
19
+ Serial.print (" \"\n parsed URL path: \" " );
20
20
Serial.print (url.path ());
21
- Serial.print (" \"\n parsed url query: \" " );
21
+ Serial.print (" \"\n parsed URL query: \" " );
22
22
Serial.print (url.query ());
23
- Serial.print (" \"\n parsed url userinfo: \" " );
23
+ Serial.print (" \"\n parsed URL userinfo: \" " );
24
24
Serial.print (url.userinfo ());
25
25
Serial.println (" \" " );
26
26
You can’t perform that action at this time.
0 commit comments