Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoHood <NicoHood@users.noreply.github.com>2016-04-30 17:05:20 +0300
committerNicoHood <NicoHood@users.noreply.github.com>2016-04-30 17:05:20 +0300
commit92d12078200e0be0e8209bcfd9b5f4ab36a30308 (patch)
tree9ee6cb59ae7d717fbba1cea7205036c1abbd3869
parentb48eb78deae33002ce2c2093134857b8a4686845 (diff)
Typos
-rw-r--r--FastLED.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/FastLED.h b/FastLED.h
index f72dcebb..2d23d284 100644
--- a/FastLED.h
+++ b/FastLED.h
@@ -167,7 +167,7 @@ public:
/// Add a CLEDController instance to the world. Exposed to the public to allow people to implement their own
/// CLEDController objects or instances. There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 3 arguments, in which case the arguments are the controller, a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 4 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 4 arguments, in which case
/// the first two arguments are the same, the third argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the fourth argument is the number of leds for this controller object.
/// @param pLed - the led controller being added
@@ -182,7 +182,7 @@ public:
/// Add an SPI based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object.
///
@@ -255,7 +255,7 @@ public:
/// Add a clockless (aka 3wire, also DMX) based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object.
///
@@ -303,7 +303,7 @@ public:
/// Add a 3rd party library based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object. This class includes the SmartMatrix
/// and OctoWS2811 based controllers
@@ -365,7 +365,7 @@ public:
/// Add a block based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object.
///
@@ -528,7 +528,7 @@ extern CFastLED FastLED;
// Warnings for undefined things
#ifndef HAS_HARDWARE_PIN_SUPPORT
-#warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info."
+#warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info."
#define NO_HARDWARE_PIN_SUPPORT
#endif