Fixed an alignment violation

pull/123/head
Hieromon Ikasamo 6 years ago committed by Hieromon Ikasamo
parent 117f377189
commit d9395ae757
  1. 3
      mkdocs/api.md
  2. 9
      mkdocs/apiaux.md

@ -214,6 +214,9 @@ Join the AutoConnectAux object to AutoConnect. AutoConnectAux objects can be joi
bool load(const String& aux)
```
```cpp
bool load(PGM_P aux)
```
```cpp
bool load(const __FlashStringHelper* aux)
```
```cpp

@ -99,6 +99,9 @@ Returns whether embedded in the menu or not. The isMenu is a function that compl
bool load(const String& in)
```
```cpp
bool load(PGM_P in)
```
```cpp
bool load(const __FlashStringHelper* in)
```
```cpp
@ -130,6 +133,12 @@ bool loadElement(const String& in, const String& name = String(""))
bool loadElement(const String& in, std::vector<String> const& names)
```
```cpp
bool loadElement(PGM_P in, const String& name = String(""))
```
```cpp
bool loadElement(PGM_P in, std::vector<String> const& names)
```
```cpp
bool loadElement(const __FlashStringHelper* in, const String& name = String(""))
```
```cpp

Loading…
Cancel
Save