Monday, July 29, 2013

Re: (very) small typo in online documentation


BORIS BRUDNOY
Web Software Developer (Careers 2.0LinkedIn)
Founder and Application Architect, Healthometry.com



On Mon, Jul 29, 2013 at 12:34 PM, Rutger van der Eijk <4ruggi@gmail.com> wrote:
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.
 
 

--
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