Skip to content

Commit 33ac32b

Browse files
committed
[docs] Spell check
1 parent be7243a commit 33ac32b

File tree

8 files changed

+28
-33
lines changed

8 files changed

+28
-33
lines changed

docs/developer/extending.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ resort to monkey patching, you can proceed as follows:
299299
11. Create Root URL Configuration
300300
---------------------------------
301301

302-
The following can be used to register all the urls in your
302+
The following can be used to register all the URLs in your
303303
``urls.py``.
304304

305305
Please read and replicate according to your project needs:
@@ -392,8 +392,7 @@ customization.
392392
~~~~~~~~~~~~~~~~~~~~~~
393393

394394
Extending the views is only required when you want to make changes in the
395-
behaviour of the API. Please refer to
396-
`sample_network_topology/api/views.py
395+
behavior of the API. Please refer to `sample_network_topology/api/views.py
397396
<https://github.com/openwisp/openwisp-network-topology/tree/master/tests/openwisp2/sample_network_topology/api/views.py>`_
398397
and replicate it in your application.
399398

docs/developer/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Run tests with:
8585
# the following command
8686
WIFI_MESH=1 ./runtests.py
8787
88-
Run qa tests:
88+
Run QA tests:
8989

9090
.. code-block:: shell
9191
@@ -97,7 +97,7 @@ Alternative Sources
9797
Pypi
9898
~~~~
9999

100-
To install the latest stable version from pypi:
100+
To install the latest Pypi:
101101

102102
.. code-block:: shell
103103

docs/developer/overriding-visualizer-templates.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Example: Overriding the ``<script>`` Tag
2323

2424
Here's a step by step guide on how to change the javascript options passed
2525
to `netjsongraph.js <https://github.com/openwisp/netjsongraph.js>`_,
26-
remember to replace ``<project_path>`` with the absolute filesytem path of
27-
your project.
26+
remember to replace ``<project_path>`` with the absolute file system path
27+
of your project.
2828

2929
**Step 1**: create a directory in
3030
``<project_path>/templates/netjsongraph``
@@ -43,7 +43,7 @@ setting so that it looks like the following example:
4343
]
4444
4545
**Step 3**: create a new file named ``netjsongraph-script.html`` in the
46-
new ``<project_path>/templates/netjsongraph/`` directory, eg:
46+
new ``<project_path>/templates/netjsongraph/`` directory, e.g.:
4747

4848
.. code-block:: html
4949

docs/partials/developer-docs.rst

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
11
.. note::
22

3-
This documentation page is aimed at developers who want to customize,
4-
change or extend the code of OpenWISP Network Topology in order to
5-
modify its behavior (eg: for personal or commercial purposes or to fix
6-
a bug, implement a new feature or contribute to the project in
7-
general).
3+
This page is for developers who want to customize or extend OpenWISP
4+
Network Topology, whether for bug fixes, new features, or
5+
contributions.
86

9-
If you aren't a developer and you are looking for information on how
10-
to use OpenWISP, please refer to:
7+
For user guides and general information, please see:
118

129
- :doc:`General OpenWISP Quickstart </user/quickstart>`
1310
- :doc:`OpenWISP Network Topology User Docs </network-topology/index>`

docs/user/integrations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In order to use this module simply add
3333
.. code-block:: python
3434
3535
INSTALLED_APPS = [
36-
# other apps (eg: openwisp-controller, openwisp-monitoring)
36+
# other apps (e.g.: openwisp-controller, openwisp-monitoring)
3737
"openwisp_network_topology",
3838
"openwisp_network_topology.integrations.device",
3939
"openwisp_users.accounts",
@@ -68,6 +68,6 @@ the ``CELERY_BEAT_SCHEDULE`` as follow:
6868
},
6969
}
7070
71-
If you are enabling this integration on a pre-existing system, use the
71+
If you are enabling this integration on a preexisting system, use the
7272
:ref:`create_device_nodes <network_topology_create_device_nodes>`
7373
management command to create the relationship between devices and nodes.

docs/user/management-commands.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ graph:
1818
./manage.py update_topology
1919
2020
The management command accepts a ``--label`` argument that will be used to
21-
search in topology labels, eg:
21+
search in topology labels, e.g.:
2222

2323
.. code-block::
2424
@@ -47,7 +47,7 @@ in future:
4747
./manage.py save_snapshot
4848
4949
The management command accepts a ``--label`` argument that will be used to
50-
search in topology labels, eg:
50+
search in topology labels, e.g.:
5151

5252
.. code-block::
5353
@@ -67,7 +67,7 @@ instance:
6767
6868
The management command accepts an argument ``--backup``, that you can pass
6969
to give the location of the backup files, by default it looks in the
70-
``tests/`` directory, eg:
70+
``tests/`` directory, e.g.:
7171

7272
.. code-block::
7373
@@ -76,7 +76,7 @@ to give the location of the backup files, by default it looks in the
7676
The management command accepts another argument ``--organization``, if you
7777
want to import data to a specific organization, you can give its UUID for
7878
the same, by default the data is added to the first found organization,
79-
eg:
79+
e.g.:
8080

8181
.. code-block::
8282
@@ -93,7 +93,7 @@ django-netjsongraph
9393

9494
This management command can be used to create the initial ``DeviceNode``
9595
relationships when the :doc:`integration with OpenWISP Controller
96-
<integrations>` is enabled in a pre-existing system which already has some
96+
<integrations>` is enabled in a preexisting system which already has some
9797
devices and topology objects in its database.
9898

9999
.. code-block:: shell

docs/user/quickstart.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Quickstart Guide
2-
================
1+
Quick Start Guide
2+
=================
33

44
This module works by periodically collecting the network topology graph
55
data of the :ref:`supported networking software or formats
@@ -53,7 +53,7 @@ Sending Data for Topology with RECEIVE Strategy
5353
The topology receive URL is shown only after the topology object is
5454
created.
5555

56-
2. Create a script (eg: ``/opt/send-topology.sh``) which sends the
56+
2. Create a script (e.g.: ``/opt/send-topology.sh``) which sends the
5757
topology data using ``POST``, in the example script below we are
5858
sending the status log data of OpenVPN but the same code can be applied
5959
to other formats by replacing ``cat /var/log/openvpn/tun0.stats`` with

docs/user/settings.rst

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Additional custom `netdiff parsers
2222
**default**: ``None``
2323
============ ========
2424

25-
String representing python module to import on initialization.
25+
String representing Python module to import on initialization.
2626

27-
Useful for loading django signals or to define custom behaviour.
27+
Useful for loading Django signals or to define custom behavior.
2828

2929
``OPENWISP_NETWORK_TOPOLOGY_TIMEOUT``
3030
-------------------------------------
@@ -81,7 +81,7 @@ user's preferences.
8181
**default**: ``None``
8282
============ ==========
8383

84-
Use the ``urlconf`` option to change receive api url to point to another
84+
Use the ``urlconf`` option to change receive API URL to point to another
8585
module, example, ``myapp.urls``.
8686

8787
``OPENWISP_NETWORK_TOPOLOGY_API_BASEURL``
@@ -92,11 +92,10 @@ module, example, ``myapp.urls``.
9292
**default**: ``None``
9393
============ ==========
9494

95-
If you have a seperate instance of openwisp-network-topology on a
96-
different domain, you can use this option to change the base of the url,
97-
this will enable you to point all the API urls to your
98-
openwisp-network-topology API server's domain, example value:
99-
``https://mytopology.myapp.com``.
95+
If you have a separate instance of the OpenWISP Network Topology API on a
96+
different domain, you can use this option to change the base of the URL,
97+
this will enable you to point all the API URLs to your API server's
98+
domain, example value: ``https://api.myservice.com``.
10099

101100
``OPENWISP_NETWORK_TOPOLOGY_API_AUTH_REQUIRED``
102101
-----------------------------------------------

0 commit comments

Comments
 (0)