Skip to content

Commit 839913b

Browse files
committed
Fix some typos
1 parent ec13d42 commit 839913b

27 files changed

+36
-36
lines changed

src/main/markdown/articles/mvp-architecture-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ public class ContactsViewColumnDefinitions<ContactDetails> {
330330
});
331331
}
332332

333-
public List<ColumnDefinition<ContactDetails>> getColumnDefnitions() {
333+
public List<ColumnDefinition<ContactDetails>> getColumnDefinitions() {
334334
return columnDefinitions;
335335
}
336336
}

src/main/markdown/doc/latest/DevGuideAutoBeans.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Maps are serialized in two forms based on whether or not the key type is a value
228228
```json
229229
{ "1" : { "property" : "value"}, "55" : { "property" : "value" } }
230230
```
231-
A map that uses a reference object as a key will instead be encoded as a list of two lists. This allows object-identity maps that contain keys with identical serialized froms to be deserialized correctly. For example, a `Map<Person, Address>` would be encoded as:
231+
A map that uses a reference object as a key will instead be encoded as a list of two lists. This allows object-identity maps that contain keys with identical serialized forms to be deserialized correctly. For example, a `Map<Person, Address>` would be encoded as:
232232

233233
```json
234234
[

src/main/markdown/doc/latest/DevGuideCodingBasicsJsInterop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ fn(40); // will return 42!
149149
## Adding additional utility methods to a native type
150150

151151
The JsInterop contract specifies that a native type may contain only native methods except the ones annotated with `@JsOverlay`.
152-
`@JsOverlay` allows adding a method to a native type (annotated with `@JsType(isNative=true)`) or on a default method of a `@JsFunction` annotated interface . The `@JsOverlay` contract specifies that the methods annotated should be final and should not override any existing native method. The annotated methods will not be accessble from JavaScript and can be used from Java only. `@JsOverlay` can be useful for adding utilities methods that may not be offered by the native type. For example:
152+
`@JsOverlay` allows adding a method to a native type (annotated with `@JsType(isNative=true)`) or on a default method of a `@JsFunction` annotated interface . The `@JsOverlay` contract specifies that the methods annotated should be final and should not override any existing native method. The annotated methods will not be accessible from JavaScript and can be used from Java only. `@JsOverlay` can be useful for adding utilities methods that may not be offered by the native type. For example:
153153

154154
```java
155155
@JsType(isNative = true)

src/main/markdown/doc/latest/DevGuideCodingBasicsOverlay.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ function $onModuleLoad(){
183183

184184
This is pretty darn optimized. Even the overhead of the `getFullName()` method went away. In fact, _all_ of the Java method calls went away. When we say that "GWT
185185
gives you affordable abstractions," this is the kind of thing we're talking about. Not only does inlined code run significantly faster, we no longer had to include the function
186-
definitions themselves, thus shrinking the script a litte, too. (To be fair, though, inlining can also easily increase script size, so we're careful to strike a balance between
186+
definitions themselves, thus shrinking the script a little, too. (To be fair, though, inlining can also easily increase script size, so we're careful to strike a balance between
187187
size and speed.) It's pretty fun to look back at the original Java source above and try to reason about the sequence of optimizations the compiler had to perform to end up
188188
here.
189189

src/main/markdown/doc/latest/DevGuideI18nPluralForms.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ the count is 0, `"Nobody is here"` is chosen; if the count is 3,
159159
`"{1}, {2}, and one other are here"` is chosen because 2 is subtracted
160160
from the count before looking up the plural form to use.
161161

162-
BTW, we know it is somewhat klunky to have to pass in the names this way.
162+
BTW, we know it is somewhat clunky to have to pass in the names this way.
163163
In the future, we will add a way of referencing elements in the list/array
164164
from the placeholders, where you could simply call `peopleHere(names)`.
165165

src/main/markdown/doc/latest/DevGuideLightweightMetrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The [Debug Panel for GWT](http://code.google.com/p/gwt-debug-panel/), developed
2121

2222
The Lightweight Metrics system is composed of sets of events that you're interested in tracking and a global collector method that is responsible for evaluating these events and reporting metrics.
2323

24-
For example, when loading a GWT application, the steps involved in the process consist of bootstrapping the application, loading external references, and starting up the GWT module. Each of these steps further break down into dowloading the bootstrap script, selecting the right permutation of your application to load, fetching the permutation, and so on. This is illustrated in the [Lightweight Metrics design doc](http://code.google.com/p/google-web-toolkit/wiki/LightweightMetricsDesign) (see GWT Startup Process diagram). Each of the smaller steps, like selecting the correct permutation of the application to load, can be represented as events you would like to measure in the overall application load time. The events themselves are standard JSON objects that contain the following information:
24+
For example, when loading a GWT application, the steps involved in the process consist of bootstrapping the application, loading external references, and starting up the GWT module. Each of these steps further break down into downloading the bootstrap script, selecting the right permutation of your application to load, fetching the permutation, and so on. This is illustrated in the [Lightweight Metrics design doc](http://code.google.com/p/google-web-toolkit/wiki/LightweightMetricsDesign) (see GWT Startup Process diagram). Each of the smaller steps, like selecting the correct permutation of the application to load, can be represented as events you would like to measure in the overall application load time. The events themselves are standard JSON objects that contain the following information:
2525

2626
```javascript
2727
{

src/main/markdown/doc/latest/DevGuideOrganizingProjects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ the path prefix up to and including `jre`. As a result, `com/google/myproject/gw
314314
The GWT project uses this technique internally for the JRE emulation
315315
classes provided with GWT. One caveat specific to overriding JRE classes in
316316
this way is that they will never actually be used in development mode. In
317-
development mode, the native JRE classes always supercede classes compiled
317+
development mode, the native JRE classes always supersede classes compiled
318318
from source.
319319

320320
The `<super-source>` element supports [pattern-based

src/main/markdown/doc/latest/DevGuideRequestFactory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ as _transportable types_. Each client-side transportable type is mapped to a se
364364

365365
In determining whether or not a client-side method defined in a proxy or
366366
context type is a valid mapping for a domain method, the client types are
367-
converted to ther domain equivalent and regular Java type assignability rules
367+
converted to their domain equivalent and regular Java type assignability rules
368368
are considered.
369369

370370
A proxy type will be available on the client if it is:
@@ -399,7 +399,7 @@ formally implement the RequestContext interface. The name and argument list for
399399
each method is the same on client and server, with the following mapping
400400
rules:
401401

402-
* Client side methods that return `Reques<T>`return only T on the server. For example, a method
402+
* Client side methods that return `Request<T>`return only T on the server. For example, a method
403403
that returns `Request<String>` in the client interface simply returns String on the server.
404404
* EntityProxy types become the domain entity type on the server, so a method that returns
405405
`Request<List<EmployeeProxy>>` will just return `List<Employee>` on the server.

src/main/markdown/doc/latest/DevGuideSecurityRpcXsrf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ package com.example.foo.client;
124124
}
125125
```
126126

127-
Method level annotations override RPC interface level annoatations. If no
127+
Method level annotations override RPC interface level annotations. If no
128128
annotations are present and the RPC interface contains a method that returns
129129
[`RpcToken`](/javadoc/latest/com/google/gwt/user/client/rpc/RpcToken.html) or its implementation, then XSRF token validation is
130130
performed on all methods of that interface except for the method returning

src/main/markdown/doc/latest/DevGuideUiBinder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ aren't forced to pay the widget tax just to have templates.
8484
</ui:UiBinder>
8585
```
8686

87-
Now suppose you need to programatically read and write the text in the
87+
Now suppose you need to programmatically read and write the text in the
8888
span (the one with the `ui:field='nameSpan'` attribute) above. You'd
8989
probably like to write actual Java code to do things like that, so
9090
UiBinder templates have an associated owner class that allows

0 commit comments

Comments
 (0)