aboutsummaryrefslogtreecommitdiff
path: root/en/devices/architecture
diff options
context:
space:
mode:
authorAndroid Partner Docs <noreply@android.com>2018-02-26 16:22:26 -0800
committerClay Murphy <claym@google.com>2018-02-26 18:38:53 -0800
commit7a4e60bdebfa9c7ebf0a953770da06c29488d1ef (patch)
tree021e37ca44f1f03fc9b76d2c5f46866be1418139 /en/devices/architecture
parentd5e0ee3300d7176fb17595ce3e7c7d18703a9f31 (diff)
downloadsource.android.com-7a4e60bdebfa9c7ebf0a953770da06c29488d1ef.tar.gz
Docs: Changes to source.android.com
- 187099260 Update wording around package level inheritance rules. by Android Partner Docs <noreply@android.com> - 187049276 Devsite localized content from translation request d5454d... by Android Partner Docs <noreply@android.com> - 187034078 Updated broken links to debian files by Christina Nguyen <cqn@google.com> - 186828031 Document the current abort stack, where we've shaved off ... by Android Partner Docs <noreply@android.com> - 186781359 Devsite localized content from translation request 38d16c... by Android Partner Docs <noreply@android.com> - 186765463 Change update_engine log file location and add info about... by Christina Nguyen <cqn@google.com> - 186680947 Add paragraph about building on Linux by Android Partner Docs <noreply@android.com> - 186481923 Devsite localized content from translation request 70c39d... by Android Partner Docs <noreply@android.com> - 186476322 Correct typo (Github > GitHub) by Danielle Roberts <daroberts@google.com> PiperOrigin-RevId: 187099260 Change-Id: I9dc6de150efa78fc5c186249cee6121bedb25419
Diffstat (limited to 'en/devices/architecture')
-rw-r--r--en/devices/architecture/hidl/versioning.html8
1 files changed, 3 insertions, 5 deletions
diff --git a/en/devices/architecture/hidl/versioning.html b/en/devices/architecture/hidl/versioning.html
index fbfd60fa..13bce259 100644
--- a/en/devices/architecture/hidl/versioning.html
+++ b/en/devices/architecture/hidl/versioning.html
@@ -491,8 +491,8 @@ must be true:</p>
<ol>
<li>"Previous minor version is valid": <code>package@major.(minor-1)</code>
must be defined and follow the same rule A (none of
-<code>package@major.0</code> through <code>package@major.(major-2)</code>
-are defined) or rule B (if it is an uprev from <code>@major.(major-2)</code>);
+<code>package@major.0</code> through <code>package@major.(minor-2)</code>
+are defined) or rule B (if it is an uprev from <code>@major.(minor-2)</code>);
<br><br>
AND
<br><br>
@@ -627,10 +627,8 @@ combination of interface-level inheritance and building of UDTs by composition.
backwards-compatible inheritance rules are as follows:</p>
<ol>
-<li>All interfaces of the parent package are inherited from by interfaces in the
+<li>All top-level interfaces of the parent package are inherited from by interfaces in the
child package.</li>
-<li>All data types of the parent package are present in the new package and can
-be handled by the (possibly reimplemented) methods from the old package.</li>
<li>New interfaces may also be added the new package (no restrictions about
relationships to other interfaces in other packages).</li>
<li>New data types may also be added for use by either new methods of uprev'ed