summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-10-02 02:02:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-10-02 02:02:53 +0000
commit2becdb6579a51ee421efea9c173b557e7af6cb67 (patch)
tree82e2ce5fab15bebddf27f6ae6069d3b0ba5b4990
parentc4876f1905d87e5a37be5cd161a87890f992b938 (diff)
parent0839e5afdcbb3c16d768690e93d4e3c5cecaa89c (diff)
Merge "libnativeloader: fix typo in README.md"
-rw-r--r--libnativeloader/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/libnativeloader/README.md b/libnativeloader/README.md
index 46f6fdd7c..57b90019e 100644
--- a/libnativeloader/README.md
+++ b/libnativeloader/README.md
@@ -43,7 +43,7 @@ Currently, following extensions are available:
- `/vendor/etc/public.libraries.txt`: libraries in `/vendor/lib` that are
specific to the underlying SoC, e.g. GPU, DSP, etc.
- `/{system|product}/etc/public.libraries-<companyname>.txt`: libraries in
-`/{system|system}/lib` that a device manufacturer has newly added. The
+`/{system|product}/lib` that a device manufacturer has newly added. The
libraries should be named as `lib<name>.<companyname>.so` as in
`libFoo.acme.so`.
@@ -73,8 +73,8 @@ is a manager-like entity that is responsible for creating and configuring
linker namespaces and finding an already created linker namespace for a given
classloader.
-`native_loader_namesapces.cpp` implements the class `NativeLoaderNamespace` that
-models a linker namespace. It's main job is to abstract the two types of the
+`native_loader_namespace.cpp` implements the class `NativeLoaderNamespace` that
+models a linker namespace. Its main job is to abstract the two types of the
dynamic linker interface so that other parts of this library do not have to know
the differences of the interfaces.