summaryrefslogtreecommitdiff
path: root/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java
diff options
context:
space:
mode:
Diffstat (limited to 'l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java')
-rw-r--r--l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java b/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java
index a49b2cbf06de..f7fb5643df2c 100644
--- a/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java
+++ b/l10ntools/java/l10nconv/java/com/sun/star/tooling/converter/SDFWriter.java
@@ -38,7 +38,7 @@ import java.util.Map;
*/
public class SDFWriter extends DataWriter {
/**
- * the seperator the seperate columns
+ * the seperator the separate columns
*/
final String seperator=new String("\t");
/**
@@ -109,7 +109,7 @@ public class SDFWriter extends DataWriter {
// put them together for output
buffer.append(outData.get(sourceLineNames[i]));
if(i!=sourceLineNames.length-1) {
- // seperate the fields with tab
+ // separate the fields with tab
buffer.append(seperator);
}else{
// this line is full
@@ -125,7 +125,7 @@ public class SDFWriter extends DataWriter {
// put them together for output
buffer.append(outData.get(targetLineNames[i]));
if(i!=targetLineNames.length-1) {
- // seperate the fields with tab
+ // separate the fields with tab
buffer.append(seperator);
}else{
// this line is full