summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorKen Rockot <rockot@chromium.org>2016-01-28 08:46:05 -0800
committerKen Rockot <rockot@chromium.org>2016-01-28 16:48:30 +0000
commitb908e01c1385dfe034c8a2a1f223ab1d4355ae81 (patch)
treefdfa30f263ef8bf6b7b1a2a1b119352dd206c7a1 /docs
parent12b8eae75903716455b44d2c25236e183cebbeb7 (diff)
downloadchromium_src-b908e01c1385dfe034c8a2a1f223ab1d4355ae81.zip
chromium_src-b908e01c1385dfe034c8a2a1f223ab1d4355ae81.tar.gz
chromium_src-b908e01c1385dfe034c8a2a1f223ab1d4355ae81.tar.bz2
[mojo-doc] Tiny nits
Moar nits. BUG=None TBR=benwells@chromium.org Review URL: https://codereview.chromium.org/1641243002 . Cr-Commit-Position: refs/heads/master@{#372107}
Diffstat (limited to 'docs')
-rw-r--r--docs/mojo_in_chromium.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/mojo_in_chromium.md b/docs/mojo_in_chromium.md
index 901d13c..58ab08e 100644
--- a/docs/mojo_in_chromium.md
+++ b/docs/mojo_in_chromium.md
@@ -49,10 +49,10 @@ either endpoint may be transferred over another message pipe.
Because we bootstrap a primordial message pipe between the browser process and
each child process, this in turn means that you can create a new pipe and
-ultimately send either end to any any process, and the two ends will still be
+ultimately send either end to any process, and the two ends will still be
able to talk to each other seamlessly and exclusively. Goodbye, routing IDs!
-While message pipes can carry arbitrary packets of unstructured data, we
+While message pipes can carry arbitrary packets of unstructured data we
generally use them in conjunction with generated bindings to ensure a
consistent, well-defined, versioned message structure on all endpoints.
@@ -177,7 +177,7 @@ frobinator->Frobinate();
```
Behind the scenes this serializes a message corresponding to the `Frobinate`
-request and writes it to one end of the pipe. Eventually (and, incidentally,
+request and writes it to one end of the pipe. Eventually (and incidentally,
very soon after), `impl`'s internal `mojo::Binding` will decode this message and
dispatch a call to `impl.Frobinate()`.