Monday, July 29, 2013

(very) small typo in online documentation

Hi,

I think I've found a very small typo on


In this section the code snippet has a small typo. I.e.
  TextBox dataEntry;      // Set the focus on the widget after setup completes.    Scheduler.get().scheduleDeferred(new Command() {      public void execute () {        dataEntry.setFocus();      }    }      dataEntry = new TextBox();  
should IMO be
    TextBox dataEntry;      // Set the focus on the widget after setup completes.    Scheduler.get().scheduleDeferred(new Command() {      public void execute () {        dataEntry.setFocus();      }    });      dataEntry = new TextBox();  
Very small. But than again as we say in Dutch; "every little bit helps".

Who can adjust this?


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

No comments:

Post a Comment