aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristophe Milard <christophe.milard@linaro.org>2016-02-22 18:02:58 +0100
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-02-25 15:21:58 +0300
commit02c18eecf5ce58035569b8699181b5b63959939f (patch)
tree7bfc68e444d9ab0b158aa89110ee92893916cc35 /doc
parent63973d390f69c57746e2407a353532884fb462de (diff)
doc: removing invalid characters
linux "tree" command output contains non printable character 160 which made its way into the asciidoc. Removed and replaced by space here. Signed-off-by: Christophe Milard <christophe.milard@linaro.org> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/implementers-guide/implementers-guide.adoc34
-rw-r--r--doc/users-guide/users-guide.adoc10
2 files changed, 22 insertions, 22 deletions
diff --git a/doc/implementers-guide/implementers-guide.adoc b/doc/implementers-guide/implementers-guide.adoc
index db9701f75..133e4bb83 100644
--- a/doc/implementers-guide/implementers-guide.adoc
+++ b/doc/implementers-guide/implementers-guide.adoc
@@ -23,25 +23,25 @@ tree, but leave the actual definitions to be defined by the specific platform.
----
./
├── include/
-│   ├── odp/
-│   │   └── api/ <1>
-│   │   └── The Public API and the documentation.
-│   │
-│   └── odp.h <4> This file should be the only file included by the application.
+│ ├── odp/
+│ │ └── api/ <1>
+│ │ └── The Public API and the documentation.
+│ │
+│ └── odp.h <4> This file should be the only file included by the application.
├── platform/
-│   ├── <implementation name>/
-│   │   ├── include/
-│   │   │   ├── odp/ <2>
-│   │   │   │   ├── In-line function definitions of the public API for this
-│   │   │   │ │ platform seen by the application.
-│   │   │   │ │
-│   │   │   │   └── plat/ <3>
-│   │   │   │     └── Platform specific types, enums etc as seen by the
-│   │   │   │ application but require overriding by the
-│   │   │   │ implementation.
-│   │   │   │  
-│   │   │   └── Internal header files seen only by the implementation.
+│ ├── <implementation name>/
+│ │ ├── include/
+│ │ │ ├── odp/ <2>
+│ │ │ │ ├── In-line function definitions of the public API for this
+│ │ │ │ │ platform seen by the application.
+│ │ │ │ │
+│ │ │ │ └── plat/ <3>
+│ │ │ │   └── Platform specific types, enums etc as seen by the
+│ │ │ │ application but require overriding by the
+│ │ │ │ implementation.
+│ │ │ │  
+│ │ │ └── Internal header files seen only by the implementation.
----
<1> The doxygen description of the API definition is held in the public api file
diff --git a/doc/users-guide/users-guide.adoc b/doc/users-guide/users-guide.adoc
index 866d6ad96..dff683381 100644
--- a/doc/users-guide/users-guide.adoc
+++ b/doc/users-guide/users-guide.adoc
@@ -476,11 +476,11 @@ visible to the application.
----
./
├── include/
-│   ├── odp/
-│   │   └── api/
-│   │   └── The Public API and the documentation.
-│   │
-│   └── odp.h This file should be the only file included by the application.
+│ ├── odp/
+│ │ └── api/
+│ │ └── The Public API and the documentation.
+│ │
+│ └── odp.h This file should be the only file included by the application.
----
=== Initialization