summaryrefslogtreecommitdiff
path: root/api_changes.md
diff options
context:
space:
mode:
authorGeorge Kuan <commonlisp@gmail.com>2015-04-26 19:37:14 -0700
committerGeorge Kuan <commonlisp@gmail.com>2015-04-26 19:37:14 -0700
commiteb7b52f95ad2af7378be8ca2ab3bbba8b1a00f34 (patch)
tree7d1636f0eac6bb135ba0d6ca2b4b6fd6da62dd18 /api_changes.md
parent77e469b2870d2fda54fa2555d63edf5965cc26b8 (diff)
Corrected some typos
Diffstat (limited to 'api_changes.md')
-rw-r--r--api_changes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/api_changes.md b/api_changes.md
index be02e16c..6ab86ce0 100644
--- a/api_changes.md
+++ b/api_changes.md
@@ -243,7 +243,7 @@ The fuzzer can be found in `pkg/api/testing/fuzzer.go`.
## Update the semantic comparisons
VERY VERY rarely is this needed, but when it hits, it hurts. In some rare
-cases we end up with objects (e.g. resource quantites) that have morally
+cases we end up with objects (e.g. resource quantities) that have morally
equivalent values with different bitwise representations (e.g. value 10 with a
base-2 formatter is the same as value 0 with a base-10 formatter). The only way
Go knows how to do deep-equality is through field-by-field bitwise comparisons.
@@ -278,7 +278,7 @@ At last, your change is done, all unit tests pass, e2e passes, you're done,
right? Actually, no. You just changed the API. If you are touching an
existing facet of the API, you have to try *really* hard to make sure that
*all* the examples and docs are updated. There's no easy way to do this, due
-in part ot JSON and YAML silently dropping unknown fields. You're clever -
+in part to JSON and YAML silently dropping unknown fields. You're clever -
you'll figure it out. Put `grep` or `ack` to good use.
If you added functionality, you should consider documenting it and/or writing