8181441: Fix minor typo/link in the old standard doclet API documentation

Reviewed-by: jjg
This commit is contained in:
Kumar Srinivasan 2017-06-02 13:38:43 -07:00
parent 32ec4f19bd
commit 8031c134aa
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -32,8 +32,8 @@ import com.sun.javadoc.*;
* tag must implement this interface.
*
* <p style="font-style: italic; font-size:larger">
* <b>Note:</b> This interface has been superseded by one
* in the new package {@code jdk.javadoc.doclet.taglet}.
* <b>Note:</b> This interface has been superseded by its replacement,
* {@link jdk.javadoc.doclet.Taglet}.
* </p>
*
* To be loaded and used by
@ -66,7 +66,8 @@ import com.sun.javadoc.*;
* @author Jamie Ho
*
* @deprecated
* This interface has been superseded by one in the new package {@code jdk.javadoc.doclet.taglet}.
* This interface has been superseded by its replacement,
* {@link jdk.javadoc.doclet.Taglet}.
*/
@Deprecated
public interface Taglet {

View File

@ -31,7 +31,7 @@ import com.sun.tools.doclets.formats.html.*;
/**
* This doclet generates HTML-formatted documentation for the specified packages and types.
* @deprecated The doclet has been superseded by its replacement,
* {@code jdk.javadoc.doclets.StandardDoclet}.
* {@link jdk.javadoc.doclet.StandardDoclet}.
*/
@Deprecated(forRemoval=true, since="9")
public class Standard {