diff mbox

[4/4] doc: removing invalid characters

Message ID 1455731824-17230-4-git-send-email-christophe.milard@linaro.org
State Superseded
Headers show

Commit Message

Christophe Milard Feb. 17, 2016, 5:57 p.m. UTC
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>
---
 doc/implementers-guide/implementers-guide.adoc | 34 +++++++++++++-------------
 doc/users-guide/users-guide.adoc               | 10 ++++----
 2 files changed, 22 insertions(+), 22 deletions(-)
diff mbox

Patch

diff --git a/doc/implementers-guide/implementers-guide.adoc b/doc/implementers-guide/implementers-guide.adoc
index d68354d..7ec2208 100644
--- a/doc/implementers-guide/implementers-guide.adoc
+++ b/doc/implementers-guide/implementers-guide.adoc
@@ -22,25 +22,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 bc23b72..5aab949 100644
--- a/doc/users-guide/users-guide.adoc
+++ b/doc/users-guide/users-guide.adoc
@@ -475,11 +475,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