Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Keller2013-05-15 14:51:17 +0000
committerMarkus Keller2013-05-15 14:51:17 +0000
commit8ce468638ccf5af1104f4cffdd247de8af964cec (patch)
treeeb53a1dab1ad3a33a7cba9d66e88d8d59eb6aafe
parentfb9bbaa3c39f88a9e0e5f64d3c4800a01d3573b4 (diff)
downloadeclipse.platform.text-8ce468638ccf5af1104f4cffdd247de8af964cec.tar.gz
eclipse.platform.text-8ce468638ccf5af1104f4cffdd247de8af964cec.tar.xz
eclipse.platform.text-8ce468638ccf5af1104f4cffdd247de8af964cec.zip
fixed broken Javadoc link
-rw-r--r--org.eclipse.text/projection/org/eclipse/jface/text/projection/ChildDocument.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.text/projection/org/eclipse/jface/text/projection/ChildDocument.java b/org.eclipse.text/projection/org/eclipse/jface/text/projection/ChildDocument.java
index 3ce55747abe..c88e59e3567 100644
--- a/org.eclipse.text/projection/org/eclipse/jface/text/projection/ChildDocument.java
+++ b/org.eclipse.text/projection/org/eclipse/jface/text/projection/ChildDocument.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -59,7 +59,7 @@ public class ChildDocument extends ProjectionDocument {
/**
* Creates a new child document.
*
- * @param masterDocument @inheritDoc
+ * @param masterDocument the master document
*/
public ChildDocument(IDocument masterDocument) {
super(masterDocument);

Back to the top