Browse Source

Correct language in docs (fixes GH-922)

David Cramer 11 years ago
parent
commit
aaf3bc40ee
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/developer/client/index.rst

+ 3 - 3
docs/developer/client/index.rst

@@ -146,7 +146,7 @@ transports are available on top of HTTP:
 Building the JSON Packet
 ------------------------
 
-The body of the post is a string representation of a JSON object. It is also preferably gzipped encoding,
+The body of the post is a string representation of a JSON object. It is also preferably gzip encoded,
 which also means its expected to be base64-encoded.
 
 For example, with an included Exception event, a basic JSON body might resemble the following::
@@ -463,7 +463,7 @@ care of several key things:
 * Exponential backoff when Sentry fails (don't continue trying if the server is offline)
 * Failover to a standard logging module on errors.
 
-For example, the Python client will log any failed requests to the Sentry server to a named logger, ``sentry.errors``. 
+For example, the Python client will log any failed requests to the Sentry server to a named logger, ``sentry.errors``.
 It will also only retry every few seconds, based on how many consecutive failures its seen. The code for this is simple::
 
     def should_try(self):
@@ -556,7 +556,7 @@ Most arbitrary values in Sentry have their size restricted. This means any
 values that are sent as metadata (such as variables in a stacktrace) as well
 as things like extra data, or tags.
 
-- Mappings of values (such as HTTP data, extra data, etc) are limitd to 50
+- Mappings of values (such as HTTP data, extra data, etc) are limited to 50
   item pairs.
 - Event IDs are limited to 32 characters.
 - Tag keys are limited to 32 characters.