File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
28
28
* Bug fixes
29
29
* Remove lazy NIF loading. There's an unexplained segfault in a small example
30
- program that uses the same strategy. Even though it wasn't reproduceable
30
+ program that uses the same strategy. Even though it wasn't reproducible
31
31
here, it's not worth the risk. Thanks to @pojiro for investigating.
32
32
33
33
* Changes
@@ -185,7 +185,7 @@ No more backwards incompatible changes are expected until after 1.0.
185
185
## v0.3.0
186
186
187
187
* New features
188
- * Support ` pull_mode ` initializion in ` open/3 ` .
188
+ * Support ` pull_mode ` initialization in ` open/3 ` .
189
189
190
190
## v0.2.0
191
191
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ defmodule Circuits.GPIO do
153
153
* `:pull_mode` - the initial pull mode for an input GPIO
154
154
* `:force_enumeration` - Linux cdev-specific option to force a scan of
155
155
available GPIOs rather than using the cache. This is only for test purposes
156
- since the GPIO cache should rescan as needed.
156
+ since the GPIO cache should refresh as needed.
157
157
"""
158
158
@ type open_options ( ) :: [
159
159
initial_value: value ( ) ,
@@ -187,7 +187,7 @@ defmodule Circuits.GPIO do
187
187
def gpio_spec? ( x ) , do: is_gpio_spec ( x )
188
188
189
189
@ doc """
190
- Return indentifying information about a GPIO
190
+ Return identifying information about a GPIO
191
191
192
192
See `t:gpio_spec/0` for the ways of referring to GPIOs. If the GPIO is found,
193
193
this function returns information about the GPIO.
You can’t perform that action at this time.
0 commit comments