summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
diff options
context:
space:
mode:
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r--udkapi/com/sun/star/io/ObjectOutputStream.idl4
-rw-r--r--udkapi/com/sun/star/io/XMarkableStream.idl2
-rw-r--r--udkapi/com/sun/star/io/XTextInputStream.idl2
-rw-r--r--udkapi/com/sun/star/io/XTextOutputStream.idl2
4 files changed, 5 insertions, 5 deletions
diff --git a/udkapi/com/sun/star/io/ObjectOutputStream.idl b/udkapi/com/sun/star/io/ObjectOutputStream.idl
index 078368764744..cc3f26a840ba 100644
--- a/udkapi/com/sun/star/io/ObjectOutputStream.idl
+++ b/udkapi/com/sun/star/io/ObjectOutputStream.idl
@@ -46,7 +46,7 @@ module com { module sun { module star { module io {
/** is a stream which allows writing the data of persistent objects.
<p>Implementations of this service must fulfill the specifications of the
- <type>DataOutputStream</type> service; futhermore, the stream needs to be chained to a
+ <type>DataOutputStream</type> service; furthermore, the stream needs to be chained to a
<type>XMarkableStream</type>. Therefore, it also provides the <type>XMarkableStream</type>
interface, but it delegates the calls to the chained object.
The written objects are held until this instance is destroyed.
@@ -60,7 +60,7 @@ module com { module sun { module star { module io {
Object ObjectData // the data of the object
</pre>
- @garantees
+ @guarantees
<ul>
<li>-thread safe </li>
<li>-allow buffer size is 2 ^ 31 -1 </li>
diff --git a/udkapi/com/sun/star/io/XMarkableStream.idl b/udkapi/com/sun/star/io/XMarkableStream.idl
index 02d3f51eb92f..f8637dd5d4fa 100644
--- a/udkapi/com/sun/star/io/XMarkableStream.idl
+++ b/udkapi/com/sun/star/io/XMarkableStream.idl
@@ -50,7 +50,7 @@ published interface XMarkableStream: com::sun::star::uno::XInterface
//-------------------------------------------------------------------------
// DocMerge from xml: method com::sun::star::io::XMarkableStream::createMark
- /** creates a mark of the current postion and returns an identifier to it.
+ /** creates a mark of the current position and returns an identifier to it.
*/
long createMark()
raises( com::sun::star::io::IOException );
diff --git a/udkapi/com/sun/star/io/XTextInputStream.idl b/udkapi/com/sun/star/io/XTextInputStream.idl
index 71197669037b..50295152e484 100644
--- a/udkapi/com/sun/star/io/XTextInputStream.idl
+++ b/udkapi/com/sun/star/io/XTextInputStream.idl
@@ -39,7 +39,7 @@ module com { module sun { module star { module io {
//=============================================================================
/** Interface to read strings from a stream.
- <p>This interfaces allows to read strings seperated by
+ <p>This interfaces allows to read strings separated by
delimiters and to read lines. The character encoding
to be used can be set by <member>setEncoding()</member>.
Default encoding is "utf8".</p>
diff --git a/udkapi/com/sun/star/io/XTextOutputStream.idl b/udkapi/com/sun/star/io/XTextOutputStream.idl
index 6dd5ba9bc09b..528c90e18b76 100644
--- a/udkapi/com/sun/star/io/XTextOutputStream.idl
+++ b/udkapi/com/sun/star/io/XTextOutputStream.idl
@@ -50,7 +50,7 @@ published interface XTextOutputStream: com::sun::star::io::XOutputStream
/** writes a string to the stream using the encoding
defined by <member>setEncoding</member>.
- <p>Line breaks or delimiters that may be neccessary
+ <p>Line breaks or delimiters that may be necessary
to support <member>XTextInputStream::readLine</member>
and <member>XTextInputStream::readString</member>
have to be added manually to the parameter string.</p>