Skip to content

Commit 541af86

Browse files
committed
fix: various typos
1 parent df5168e commit 541af86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/QueryAggregated/QueryAggregated.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* QueryAggregated Example code for InfluxDBClient library for Arduino.
33
*
4-
* This example demonstrates querying basic aggreagated statistic parameters of WiFi signal level measured and stored in BasicWrite and SecureWrite examples.
4+
* This example demonstrates querying basic aggregated statistic parameters of WiFi signal level measured and stored in BasicWrite and SecureWrite examples.
55
*
66
* Demonstrates connection to any InfluxDB instance accesible via:
77
* - unsecured http://...

examples/QueryTable/QueryTable.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ void loop() {
119119
Serial.print(" ");
120120
// Print values of the row
121121
for(FluxValue &val: result.getValues()) {
122-
// Check wheter the value is null
122+
// Check whether the value is null
123123
if(!val.isNull()) {
124124
// Use raw string, unconverted value
125125
Serial.print(val.getRawValue());

0 commit comments

Comments
 (0)