Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java')
-rw-r--r--bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java
index c07dc5ef0..aabc321dc 100644
--- a/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java
+++ b/bundles/org.eclipse.team.cvs.core/src/org/eclipse/team/internal/ccvs/core/client/Session.java
@@ -313,12 +313,12 @@ public class Session {
/**
* Sends an argument to the server.
- * <p>e.g. sendArgument("Hello\nWorld\n Hello World") sends:
+ * <p>e.g. sendArgument("Hello\nWorld\n Hello World") sends:</p>
* <pre>
* Argument Hello \n
* Argumentx World \n
* Argumentx Hello World \n
- * </pre></p>
+ * </pre>
*
* @param arg the argument to send
*/
@@ -357,10 +357,10 @@ public class Session {
/**
* Sends an Is-modified request to the server without the file contents.
- * <p>e.g. if a file called "local_file" was modified, sends:
+ * <p>e.g. if a file called "local_file" was modified, sends:</p>
* <pre>
* Is-modified local_file \n
- * </pre></p><p>
+ * </pre><p>
* This request is an optimized form of the Modified request and may not
* be supported by all servers. Hence, if it is not supported, a Modified
* request is sent instead along with the file's contents. According to
@@ -420,11 +420,11 @@ public class Session {
/**
* Sends a Directory request to the server.
- * <p>e.g. sendDirectory("local_dir", "remote_dir") sends:
+ * <p>e.g. sendDirectory("local_dir", "remote_dir") sends:</p>
* <pre>
* Directory local_dir
* repository_root/remote_dir
- * </pre></p>
+ * </pre>
*
* @param localDir the path of the local directory relative to localRoot
* @param remoteDir the path of the remote directory relative to repositoryRoot
@@ -492,10 +492,10 @@ public class Session {
/**
* Sends a global options to the server.
- * <p>e.g. sendGlobalOption("-n") sends:
+ * <p>e.g. sendGlobalOption("-n") sends:</p>
* <pre>
* Global_option -n \n
- * </pre></p>
+ * </pre>
*
* @param option the global option to send
*/
@@ -563,13 +563,13 @@ public class Session {
/**
* Sends a Modified request to the server along with the file contents.
- * <p>e.g. if a file called "local_file" was modified, sends:
+ * <p>e.g. if a file called "local_file" was modified, sends:</p>
* <pre>
* Modified local_file \n
* file_permissions \n
* file_size \n
* [... file_contents ...]
- * </pre></p><p>
+ * </pre><p>
* Under some circumstances, Is-modified may be used in place of this request.<br>
* Do not use with history, init, import, rdiff, release, rtag, or update.
* </p><p>

Back to the top