Skip to content

Commit 4513e3d

Browse files
committed
Correct spelling of using
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 2475d6a commit 4513e3d

17 files changed

+17
-17
lines changed

src/TinyGsmClientA7672x.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class TinyGsmA7672X : public TinyGsmModem<TinyGsmA7672X>,
154154
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
155155
this->mux = at->findFirstUnassignedMux();
156156
} else {
157-
// If we can't find anything available, overwrite something, useing mod
157+
// If we can't find anything available, overwrite something, using mod
158158
// to make sure we're in range
159159
this->mux = (mux % TINY_GSM_MUX_COUNT);
160160
}

src/TinyGsmClientBG96.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class TinyGsmBG96 : public TinyGsmModem<TinyGsmBG96>,
159159
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
160160
this->mux = at->findFirstUnassignedMux();
161161
} else {
162-
// If we can't find anything available, overwrite something, useing mod
162+
// If we can't find anything available, overwrite something, using mod
163163
// to make sure we're in range
164164
this->mux = (mux % TINY_GSM_MUX_COUNT);
165165
}

src/TinyGsmClientESP32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class TinyGsmESP32 : public TinyGsmEspressif<TinyGsmESP32>,
105105
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
106106
this->mux = at->findFirstUnassignedMux();
107107
} else {
108-
// If we can't find anything available, overwrite something, useing mod
108+
// If we can't find anything available, overwrite something, using mod
109109
// to make sure we're in range
110110
this->mux = (mux % TINY_GSM_MUX_COUNT);
111111
}

src/TinyGsmClientESP8266.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class TinyGsmESP8266 : public TinyGsmEspressif<TinyGsmESP8266>,
9999
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
100100
this->mux = at->findFirstUnassignedMux();
101101
} else {
102-
// If we can't find anything available, overwrite something, useing mod
102+
// If we can't find anything available, overwrite something, using mod
103103
// to make sure we're in range
104104
this->mux = (mux % TINY_GSM_MUX_COUNT);
105105
}

src/TinyGsmClientESP8266NonOS.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class TinyGsmESP8266NonOS
103103
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
104104
this->mux = at->findFirstUnassignedMux();
105105
} else {
106-
// If we can't find anything available, overwrite something, useing mod
106+
// If we can't find anything available, overwrite something, using mod
107107
// to make sure we're in range
108108
this->mux = (mux % TINY_GSM_MUX_COUNT);
109109
}

src/TinyGsmClientM590.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class TinyGsmM590 : public TinyGsmModem<TinyGsmM590>,
116116
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
117117
this->mux = at->findFirstUnassignedMux();
118118
} else {
119-
// If we can't find anything available, overwrite something, useing mod
119+
// If we can't find anything available, overwrite something, using mod
120120
// to make sure we're in range
121121
this->mux = (mux % TINY_GSM_MUX_COUNT);
122122
}

src/TinyGsmClientM95.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class TinyGsmM95 : public TinyGsmModem<TinyGsmM95>,
127127
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
128128
this->mux = at->findFirstUnassignedMux();
129129
} else {
130-
// If we can't find anything available, overwrite something, useing mod
130+
// If we can't find anything available, overwrite something, using mod
131131
// to make sure we're in range
132132
this->mux = (mux % TINY_GSM_MUX_COUNT);
133133
}

src/TinyGsmClientMC60.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class TinyGsmMC60 : public TinyGsmModem<TinyGsmMC60>,
130130
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
131131
this->mux = at->findFirstUnassignedMux();
132132
} else {
133-
// If we can't find anything available, overwrite something, useing mod
133+
// If we can't find anything available, overwrite something, using mod
134134
// to make sure we're in range
135135
this->mux = (mux % TINY_GSM_MUX_COUNT);
136136
}

src/TinyGsmClientSIM5360.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class TinyGsmSim5360 : public TinyGsmModem<TinyGsmSim5360>,
144144
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
145145
this->mux = at->findFirstUnassignedMux();
146146
} else {
147-
// If we can't find anything available, overwrite something, useing mod
147+
// If we can't find anything available, overwrite something, using mod
148148
// to make sure we're in range
149149
this->mux = (mux % TINY_GSM_MUX_COUNT);
150150
}

src/TinyGsmClientSIM7000.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class TinyGsmSim7000 : public TinyGsmSim70xx<TinyGsmSim7000>,
102102
} else if (at->findFirstUnassignedMux() != static_cast<uint8_t>(-1)) {
103103
this->mux = at->findFirstUnassignedMux();
104104
} else {
105-
// If we can't find anything available, overwrite something, useing mod
105+
// If we can't find anything available, overwrite something, using mod
106106
// to make sure we're in range
107107
this->mux = (mux % TINY_GSM_MUX_COUNT);
108108
}

0 commit comments

Comments
 (0)