The documentation you're reading is generated from text files using the
http://www.methods.co.nz/asciidoc/[AsciiDoc] suite. Any changes made to the
-projects documentation will be reflected in our +web.git+ repository:
+project's documentation will be reflected in our +web.git+ repository:
----
git clone http://git.lede-project.org/web.git
----
-If you would like to contribute to the documentation then please send patches to our lede-dev mailing list and use the prefix "doc:" in the patches subject.
+If you would like to contribute to the documentation then please send patches to our lede-dev mailing list and use the prefix "doc:" in the patch's subject.
Alternatively, pull requests can be opened against https://github.com/lede-project/web
== uBus - IPC/RPC
-uBus is the interconnect system used by most service running on a _LEDE_ setup.
-Service can connect to the bus and provide methods that can be called by other services or clients.
+uBus is the interconnect system used by most services running on a _LEDE_ setup.
+Services can connect to the bus and provide methods that can be called by other services or clients.
There is a CLI that can be used to communicate with services on the bus.
== UCI - Unified Configuration Interface
-_LEDE_ uses UCI to store its configuration. This is a human readable file format using typed and named section. Each section contains a number of options. Options can be single values or list of values. All configuration files are stored in the /etc/config/ folder. You can manually edit these files.
+_LEDE_ uses UCI to store its configuration. This is a human readable file format using typed and named sections. Each section contains a number of options. Options can be single values or lists of values. All configuration files are stored in the /etc/config/ folder. You can manually edit these files.
----
root@lede:/# cat etc/config/system
option enable_server 0
----
-Alternatively you may use the uci CLI to read/modify their content. Using the CLI has the advantage that you do not need to worry about the validity of the syntax. Some user do however prefer to make changes manually, they should however be aware that even minor syntax errors will make the whole file unparsable and not just the specific section and/or option that was modified.
+Alternatively you may use the uci CLI to read/modify their content. Using the CLI has the advantage that you do not need to worry about the validity of the syntax. Some users do however prefer to make changes manually, they should be aware that even minor syntax errors will make the whole file unparsable and not just the specific section and/or option that was modified.
----
root@lede:/# uci show system