Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-10-04 19:37:38 +0000
committerslewis2007-10-04 19:37:38 +0000
commit336ad12895cfbf103fbf704bfe26a9160168b354 (patch)
treeb97e4ff745f05a8ee7dabc6376aeb080614121a1
parent9f04569a03f9083c534e90ce1d47f4cee9f09df1 (diff)
downloadorg.eclipse.ecf-336ad12895cfbf103fbf704bfe26a9160168b354.tar.gz
org.eclipse.ecf-336ad12895cfbf103fbf704bfe26a9160168b354.tar.xz
org.eclipse.ecf-336ad12895cfbf103fbf704bfe26a9160168b354.zip
fixed typo in javadocsv20071004-1446
-rw-r--r--framework/bundles/org.eclipse.ecf.filetransfer/src/org/eclipse/ecf/filetransfer/IFileRangeSpecification.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/bundles/org.eclipse.ecf.filetransfer/src/org/eclipse/ecf/filetransfer/IFileRangeSpecification.java b/framework/bundles/org.eclipse.ecf.filetransfer/src/org/eclipse/ecf/filetransfer/IFileRangeSpecification.java
index 30cc636ad..30d381aff 100644
--- a/framework/bundles/org.eclipse.ecf.filetransfer/src/org/eclipse/ecf/filetransfer/IFileRangeSpecification.java
+++ b/framework/bundles/org.eclipse.ecf.filetransfer/src/org/eclipse/ecf/filetransfer/IFileRangeSpecification.java
@@ -38,7 +38,7 @@ public interface IFileRangeSpecification {
* but less than the {@link #getStartPosition()} then this range specification is invalid. If greater than or
* equal to N (where N is length of the file in bytes), then the remaining part of the given file will
* be downloaded. If both {@link #getStartPosition()} and {@link #getEndPosition()} are valid, then
- * the number of bytes downloaded will be <code>(endPostion - startPosition) + 1</code>. So, for example:
+ * the number of bytes downloaded will be <code>(endPosition - startPosition) + 1</code>. So, for example:
* <pre>
* For a fileLength = 20
*

Back to the top