plurals and possesives: minor corrections
authorKarl Palsson <karlp@etactica.com>
Thu, 19 May 2016 10:28:03 +0000 (10:28 +0000)
committerJo-Philipp Wich <jo@wwsnet.net>
Thu, 19 May 2016 15:18:12 +0000 (17:18 +0200)
Signed-off-by: Karl Palsson <karlp@etactica.com>
docs/index.txt
docs/ubus.txt
docs/uci.txt

index 6d5efede2f543f003dbd5acf958b07271baca78c..349b7e7df92c72de5bd6560b6a41660ff920404a 100644 (file)
@@ -7,12 +7,12 @@ include::menu.inc[]
 
 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
index 3118fd6da1df3c7d014067b44d417f0ec8d70b22..e176c8e901140e9f4c459cee3d429028f0ff7918 100644 (file)
@@ -5,8 +5,8 @@ include::menu.inc[]
 
 == 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.
 
index cb54743a0501e511006097f4c7252948af8b74f3..45b1115acb4eec162457f9b3a023026978145900 100644 (file)
@@ -5,7 +5,7 @@ include::menu.inc[]
 
 == 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
@@ -22,7 +22,7 @@ config timeserver ntp
        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