--- old/src/jdk.incubator.foreign/share/classes/jdk/incubator/foreign/MemoryLayout.java 2019-12-09 18:35:53.575268288 +0000 +++ new/src/jdk.incubator.foreign/share/classes/jdk/incubator/foreign/MemoryLayout.java 2019-12-09 18:35:53.107256936 +0000 @@ -171,13 +171,13 @@ /** * Returns the alignment constraint associated with this layout, expressed in bits. Layout alignment defines a power - * of two A which is the bitwise alignment of the layout. If A>=8 then A/8 is the number of bytes that must be aligned - * for any pointer that correctly points to this layout. Thus: + * of two {@code A} which is the bit-wise alignment of the layout. If {@code A <= 8} then {@code A/8} is the number of + * bytes that must be aligned for any pointer that correctly points to this layout. Thus: * * * * @return the layout alignment constraint, in bits. @@ -186,13 +186,13 @@ /** * Returns the alignment constraint associated with this layout, expressed in bytes. Layout alignment defines a power - * of two A which is the bytewise alignment of the layout, where A is the number of bytes that must be aligned + * of two {@code A} which is the byte-wise alignment of the layout, where {@code A} is the number of bytes that must be aligned * for any pointer that correctly points to this layout. Thus: * * * * @return the layout alignment constraint, in bytes.