Skip to content

Commit b7be3d7

Browse files
committed
Fixed misspellings
1 parent 6858d9b commit b7be3d7

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

examples/arduino/ESP32/ESP32.ino

+7-7
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void checkAPI() {
8484
* Here you can call a list of 'All' 'Blocks' on the network.
8585
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
8686
*
87-
* This is equivalant to calling '167.114.29.49:4003/api/v2/blocks?limit=2&page=1'
87+
* This is equivalent to calling '167.114.29.49:4003/api/v2/blocks?limit=2&page=1'
8888
*
8989
* The response should be a json-formatted object
9090
* The "pretty print" version would look something like this
@@ -172,7 +172,7 @@ void checkAPI() {
172172
* The following method can be used to search for a speficit Delegate.
173173
* In this case, 'boldninja'.
174174
*
175-
* This is equivalant to calling '167.114.29.49:4003/api/v2/delegates/boldninja'
175+
* This is equivalent to calling '167.114.29.49:4003/api/v2/delegates/boldninja'
176176
*
177177
* The response should be a json-formatted object
178178
* The "pretty print" version would look something like this:
@@ -219,7 +219,7 @@ void checkAPI() {
219219
/**
220220
* The following method can be used to get the Status of a Node.
221221
*
222-
* This is equivalant to calling '167.114.29.49:4003/api/v2/node/status'
222+
* This is equivalent to calling '167.114.29.49:4003/api/v2/node/status'
223223
*
224224
* The response should be a json-formatted object
225225
* The "pretty print" version would look something like this:
@@ -244,7 +244,7 @@ void checkAPI() {
244244
*
245245
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
246246
*
247-
* This is equivalant to calling 'http://167.114.29.49:4003/api/v2/peers?limit=2&page=1'
247+
* This is equivalent to calling 'http://167.114.29.49:4003/api/v2/peers?limit=2&page=1'
248248
*
249249
* The response should be a json-formatted object
250250
* The "pretty print" version would look something like this:
@@ -294,7 +294,7 @@ void checkAPI() {
294294
/**
295295
* The following method can be used to get a list of 'Transaction' 'Types'.
296296
*
297-
* This is equivalant to calling 'http://167.114.29.49:4003/api/v2/transactions/types'
297+
* This is equivalent to calling 'http://167.114.29.49:4003/api/v2/transactions/types'
298298
*
299299
* The response should be a json-formatted object
300300
* The "pretty print" version would look something like this:
@@ -324,7 +324,7 @@ void checkAPI() {
324324
* This method can be used to get a list of 'Vote' Transactions.
325325
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
326326
*
327-
* This is equivalant to calling 'http://167.114.29.49:4003/api/v2/votes?limit=2&page=1'
327+
* This is equivalent to calling 'http://167.114.29.49:4003/api/v2/votes?limit=2&page=1'
328328
*
329329
* The response should be a json-formatted object
330330
* The "pretty print" version would look something like this:
@@ -399,7 +399,7 @@ void checkAPI() {
399399
* This method can be used to get a list of 'Top' 'Wallets' (Wallets with the most ARK).
400400
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
401401
*
402-
* This is equivalant to calling '167.114.29.49:4003/api/v2/wallets/top?limit=2&page=1'
402+
* This is equivalent to calling '167.114.29.49:4003/api/v2/wallets/top?limit=2&page=1'
403403
*
404404
* The response should be a json-formatted object
405405
* The "pretty print" version would look something like this:

examples/arduino/ESP8266/ESP8266.ino

+7-7
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ void checkAPI() {
8484
* Here you can call a list of 'All' 'Blocks' on the network.
8585
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
8686
*
87-
* This is equivalant to calling '167.114.29.49:4003/api/v2/blocks?limit=2&page=1'
87+
* This is equivalent to calling '167.114.29.49:4003/api/v2/blocks?limit=2&page=1'
8888
*
8989
* The response should be a json-formatted object
9090
* The "pretty print" version would look something like this
@@ -172,7 +172,7 @@ void checkAPI() {
172172
* The following method can be used to search for a speficit Delegate.
173173
* In this case, 'boldninja'.
174174
*
175-
* This is equivalant to calling '167.114.29.49:4003/api/v2/delegates/boldninja'
175+
* This is equivalent to calling '167.114.29.49:4003/api/v2/delegates/boldninja'
176176
*
177177
* The response should be a json-formatted object
178178
* The "pretty print" version would look something like this:
@@ -219,7 +219,7 @@ void checkAPI() {
219219
/**
220220
* The following method can be used to get the Status of a Node.
221221
*
222-
* This is equivalant to calling '167.114.29.49:4003/api/v2/node/status'
222+
* This is equivalent to calling '167.114.29.49:4003/api/v2/node/status'
223223
*
224224
* The response should be a json-formatted object
225225
* The "pretty print" version would look something like this:
@@ -244,7 +244,7 @@ void checkAPI() {
244244
*
245245
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
246246
*
247-
* This is equivalant to calling 'http://167.114.29.49:4003/api/v2/peers?limit=2&page=1'
247+
* This is equivalent to calling 'http://167.114.29.49:4003/api/v2/peers?limit=2&page=1'
248248
*
249249
* The response should be a json-formatted object
250250
* The "pretty print" version would look something like this:
@@ -294,7 +294,7 @@ void checkAPI() {
294294
/**
295295
* The following method can be used to get a list of 'Transaction' 'Types'.
296296
*
297-
* This is equivalant to calling 'http://167.114.29.49:4003/api/v2/transactions/types'
297+
* This is equivalent to calling 'http://167.114.29.49:4003/api/v2/transactions/types'
298298
*
299299
* The response should be a json-formatted object
300300
* The "pretty print" version would look something like this:
@@ -324,7 +324,7 @@ void checkAPI() {
324324
* This method can be used to get a list of 'Vote' Transactions.
325325
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
326326
*
327-
* This is equivalant to calling 'http://167.114.29.49:4003/api/v2/votes?limit=2&page=1'
327+
* This is equivalent to calling 'http://167.114.29.49:4003/api/v2/votes?limit=2&page=1'
328328
*
329329
* The response should be a json-formatted object
330330
* The "pretty print" version would look something like this:
@@ -399,7 +399,7 @@ void checkAPI() {
399399
* This method can be used to get a list of 'Top' 'Wallets' (Wallets with the most ARK).
400400
* The '2' and '1' refer to the pagination (e.g. response limit and how many pages)
401401
*
402-
* This is equivalant to calling '167.114.29.49:4003/api/v2/wallets/top?limit=2&page=1'
402+
* This is equivalent to calling '167.114.29.49:4003/api/v2/wallets/top?limit=2&page=1'
403403
*
404404
* The response should be a json-formatted object
405405
* The "pretty print" version would look something like this:

0 commit comments

Comments
 (0)