From: Karl Palsson Date: Thu, 19 May 2016 10:28:03 +0000 (+0000) Subject: plurals and possesives: minor corrections X-Git-Url: http://git.openwrt.org/?p=web.git;a=commitdiff_plain;h=d0bfb3398c3063c1678b065382f863828a05531a plurals and possesives: minor corrections Signed-off-by: Karl Palsson --- diff --git a/docs/index.txt b/docs/index.txt index 6d5efed..349b7e7 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -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 diff --git a/docs/ubus.txt b/docs/ubus.txt index 3118fd6..e176c8e 100644 --- a/docs/ubus.txt +++ b/docs/ubus.txt @@ -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. diff --git a/docs/uci.txt b/docs/uci.txt index cb54743..45b1115 100644 --- a/docs/uci.txt +++ b/docs/uci.txt @@ -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