]> source.dussan.org Git - gwtquery.git/commitdiff
Fix javadocs as julien suggested in last review
authorManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Fri, 1 Nov 2013 12:46:41 +0000 (13:46 +0100)
committerManuel Carrasco Moñino <manuel.carrasco.m@gmail.com>
Fri, 1 Nov 2013 12:46:41 +0000 (13:46 +0100)
gwtquery-core/src/main/java/com/google/gwt/query/client/Browser.java
gwtquery-core/src/main/java/com/google/gwt/query/rebind/BrowserGenerator.java

index 437b6ae99cf16d3f2f5ea6ee4e093fc23fb88563..960365679f295091f4f7f3b12833d9ecf89de92e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2011, The gwtquery team.
+ * Copyright 2013, The gwtquery team.
  *
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  * use this file except in compliance with the License. You may obtain a copy of
@@ -20,7 +20,7 @@ import com.google.gwt.query.rebind.BrowserGenerator;
 /**
  * This class is the equivalent to the jQuery.browser object in gQuery.
  * 
- * The implementation is performend by the {@link BrowserGenerator}
+ * The implementation is performed by the {@link BrowserGenerator}
  * 
  * It can be used as a way of deferred-binding without modifying .gwt.xml files,
  * taking advantage of compiler optimizations which will or will not include the
@@ -41,17 +41,14 @@ import com.google.gwt.query.rebind.BrowserGenerator;
 public abstract class Browser {
   
   /**
-   * Not in jquery, but useful in GWT for deferred bindings.
    * @return true if ie6
    */
   public final boolean ie6 = isIe6();
   /**
-   * Not in jquery, but useful in GWT for deferred bindings.
    * @return true if ie8
    */
   public final boolean ie8 = isIe8();
   /**
-   * Not in jquery, but useful in GWT for deferred bindings.
    * @return true if ie9
    */
   public final boolean ie9 = isIe9();
index 075c4da41cd6fa277914f6e04ff089e207818e24..a195367744b476493b55e511a45ded9ae1128dc9 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2011, The gwtquery team.
+ * Copyright 2013, The gwtquery team.
  *
  * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  * use this file except in compliance with the License. You may obtain a copy of