summaryrefslogtreecommitdiffstats
path: root/offapi/com/sun/star/util/Endianness.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/util/Endianness.idl')
-rw-r--r--offapi/com/sun/star/util/Endianness.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/offapi/com/sun/star/util/Endianness.idl b/offapi/com/sun/star/util/Endianness.idl
index c48698a0cbc7..0ce93b2319ac 100644
--- a/offapi/com/sun/star/util/Endianness.idl
+++ b/offapi/com/sun/star/util/Endianness.idl
@@ -29,7 +29,7 @@
module com { module sun { module star { module util {
-/** These constans describe the endiannes of data structures.<p>
+/** These constants describe the endianness of data structures.<p>
The endianness specifies the order in which the bytes of larger
types are laid out in memory.<p>
@@ -41,7 +41,7 @@ constants Endianness
/** Little endian.<p>
The values are stored in little endian format, i.e. the bytes
- of the long word 0xAABBCCDD are layed out like 0xDD, 0xCC,
+ of the long word 0xAABBCCDD are laid out like 0xDD, 0xCC,
0xBB, 0xAA in memory. That is, data of arbitrary machine word
lengths always starts with the least significant byte, and
ends with the most significant one.<p>
@@ -51,7 +51,7 @@ constants Endianness
/** Big endian.<p>
The values are stored in big endian format, i.e. the bytes of
- the long word 0xAABBCCDD are layed out like 0xAA, 0xBB, 0xCC,
+ the long word 0xAABBCCDD are laid out like 0xAA, 0xBB, 0xCC,
0xDD in memory. That is, data of arbitrary machine word
lengths always start with the most significant byte, and ends
with the least significant one.<p>