summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/util/Endianness.idl
diff options
context:
space:
mode:
authorAurimas Fišeras <aurimas@gmail.com>2011-01-25 20:24:26 +0200
committerCaolán McNamara <caolanm@redhat.com>2011-01-31 10:43:16 +0000
commit2869699356e7de4fc30173546048c8ad90beb679 (patch)
tree169ff5d9cbef3ef361340331abcb69514ba576ac /offapi/com/sun/star/util/Endianness.idl
parenteee85b1e91c233bf16adbf5579398c80f8f4c76a (diff)
Some fixes to documentation (part 5)
Fixes many spelling errors (checked with en_US spell checker). Unifies spelling of some common words. Replaces single quotes ('') with double quotes (""). Fixes several other errors.
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 f63126d72..372808a1d 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>