Skip to content

Commit 5c8db40

Browse files
committed
Keep documentation up to date
1 parent 3ed9e39 commit 5c8db40

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/configuration/rest_api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ my_rest_api:
250250
lock_excel: true
251251
```
252252

253-
#### Change the prefix in front on formulas
253+
#### Change the prefix in front of formulas
254254

255255
By default, dynamic array formulas will be prefixed by the REST API name.
256256

docs/faq.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ The total length of parameter names (and commas to separate them) should not exc
2222
In case it does (your UDF has a lot of parameters or parameters with long names), then [Microsoft Excel] is unable to display them all in the function wizard.
2323

2424
To overcome this [Microsoft Excel] limitation you can try the following:
25-
* Exclude some parameters (refer to [Open API](configuration/rest_api.md#openapi) configuration section for more information).
26-
* Remove some parameters in your service.
27-
* Reduce the length of your service parameter names.
25+
* [Exclude some parameters](configuration/rest_api.md#selecting-parameters-to-include-or-exclude).
26+
* Remove some parameters in your service (in case you manage the service yourself).
27+
* Reduce the length of your service parameter names (in case you manage the service yourself).
2828

2929
## Microsoft Excel Wizard only list some functions
3030

3131
[Microsoft Excel] function wizard is not able to list more than a certain amount of functions per category.
3232

33-
However all functions can be directly accessed in cells.
33+
However, all functions can be directly accessed in cells.
3434

3535
To overcome this [Microsoft Excel] limitation you can try the following:
36-
* Exclude some functions in your service (refer to [Open API](configuration/rest_api.md#openapi) configuration section for more information).
36+
* [Exclude some functions in your service](configuration/rest_api.md#do-not-expose-everything-the-rest-api-offers).
3737

3838
## No command specified in the configuration, cannot autostart server
3939

@@ -67,7 +67,7 @@ Within [Microsoft Excel], go to `File/Option/addin` and check disabled items (`M
6767

6868
Yes.
6969

70-
We advise to install [`pyxelrest`] in its own virtual environment.
70+
We advise installing [`pyxelrest`] in its own virtual environment.
7171
As [`pyxelrest`] relies on [`xlwings`], if you want to use [`xlwings`] you can, but if you rely on some specific [`xlwings`] configuration, you should use a separate environment.
7272

7373
The [`pyxelrest`] add-in and [`xlwings`] add-in can be installed for the same user as long as [`pyxelrest`] is installed in a separate virtual environment.

docs/installation/custom.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Note that the recommended way to install pyxelrest is [via the installer](installer.md).
44

5-
1. [Python >= 3.7](https://www.python.org/downloads/) must be installed (with [`pip`](https://pip.pypa.io/en/stable/) for auto update to work).
5+
1. [Python >= 3.8](https://www.python.org/downloads/) must be installed (with [`pip`](https://pip.pypa.io/en/stable/)).
66
2. Use [`pip`](https://pip.pypa.io/en/stable/) to install module:
77
```bash
88
python -m pip install pyxelrest
@@ -21,7 +21,7 @@ Once `pyxelrest` python module is installed, `pyxelrest_install_addin` executabl
2121
pyxelrest_install_addin
2222
```
2323

24-
Note: The add-in is not required if you only want to use `pyxelrest` [as a python module](#using-as-a-module).
24+
Note: The add-in is not required if you only want to use `pyxelrest` [as a python module](../python_module.md).
2525

2626
### Microsoft Excel add-in installer options
2727

docs/python_module.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ user = petstore.getUserByName("test")
1818
print(user)
1919
```
2020

21-
Refer to [configuration](#services-configuration) section for more details on the available options.
21+
Refer to [configuration](configuration/rest_api.md) section for more details on the available options.
2222

2323
## Generating functions
2424

0 commit comments

Comments
 (0)