You are viewing a plain text version of this content. The canonical link for it is here.
Posted to servletapi-dev@jakarta.apache.org by ed...@locus.apache.org on 2000/10/26 08:30:20 UTC

cvs commit: jakarta-servletapi/src/share/javax/servlet/jsp HttpJspPage.java JspPage.java PageContext.java

eduardop    00/10/25 23:30:19

  Modified:    src/share/javax/servlet/jsp Tag: SERVLET_23_JSP_12
                        HttpJspPage.java JspPage.java PageContext.java
  Log:
  Typos.  Last batch of changes before PFD
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.1.1.4.2 +1 -1      jakarta-servletapi/src/share/javax/servlet/jsp/HttpJspPage.java
  
  Index: HttpJspPage.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/jsp/HttpJspPage.java,v
  retrieving revision 1.1.1.1.4.1
  retrieving revision 1.1.1.1.4.2
  diff -u -r1.1.1.1.4.1 -r1.1.1.1.4.2
  --- HttpJspPage.java	2000/08/24 21:05:22	1.1.1.1.4.1
  +++ HttpJspPage.java	2000/10/26 06:30:16	1.1.1.1.4.2
  @@ -67,7 +67,7 @@
    *
   * <p>
    * The behaviour is identical to that of the JspPage, except for the signature
  - * of the _jspService method, which is now expressable in the Java type
  + * of the _jspService method, which is now expressible in the Java type
    * system and included explicitly in the interface.
    * 
    * @see JspPage
  
  
  
  1.1.1.1.4.3 +1 -1      jakarta-servletapi/src/share/javax/servlet/jsp/JspPage.java
  
  Index: JspPage.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/jsp/JspPage.java,v
  retrieving revision 1.1.1.1.4.2
  retrieving revision 1.1.1.1.4.3
  diff -u -r1.1.1.1.4.2 -r1.1.1.1.4.3
  --- JspPage.java	2000/10/13 22:34:45	1.1.1.1.4.2
  +++ JspPage.java	2000/10/26 06:30:16	1.1.1.1.4.3
  @@ -73,7 +73,7 @@
    * way in Java.
    * <p>
    * A class implementing this interface is responsible for invoking
  - * the above methods at the apropriate time based on the
  + * the above methods at the appropriate time based on the
    * corresponding Servlet-based method invocations.
    * <p>
    * The jspInit() and jspDestroy() methods can be defined by a JSP
  
  
  
  1.1.1.1.4.4 +4 -5      jakarta-servletapi/src/share/javax/servlet/jsp/PageContext.java
  
  Index: PageContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/jsp/PageContext.java,v
  retrieving revision 1.1.1.1.4.3
  retrieving revision 1.1.1.1.4.4
  diff -u -r1.1.1.1.4.3 -r1.1.1.1.4.4
  --- PageContext.java	2000/10/15 15:20:34	1.1.1.1.4.3
  +++ PageContext.java	2000/10/26 06:30:17	1.1.1.1.4.4
  @@ -308,15 +308,14 @@
       abstract public Object getAttribute(String name);
   
       /**
  -     * Return the object associated with the name in the specifed scope or null if not
  -     * found.
  +     * Return the object associated with the name in the specified
  +     * scope or null if not found.
        *
        * @param name the name of the attribute to set
        * @param scope the scope with which to associate the name/object
        * 
        * @throws NullPointerException if the name is null
  -     * @throws IllegalArgumentException if the scope is invalid
  -     */
  +     * @throws IllegalArgumentException if the scope is invalid */
   
       abstract public Object getAttribute(String name, int scope);
   
  @@ -534,7 +533,7 @@
       /**
        * <p>
        * This method is identical to the handlePageException(Exception),
  -     * except that it accepts a Throwable.  This is the prefered method
  +     * except that it accepts a Throwable.  This is the preferred method
        * to use as it allows proper implementation of the errorpage
        * semantics.
        *