Skip to content

Commit 5492091

Browse files
authored
fix: documentation typos (#80)
1 parent c68d9e0 commit 5492091

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/cdn_angular.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export class MyComponent implements OnInit {
5454

5555
## Instrument Error Handling to Record Errors
5656

57-
Angular intercepts uncaught JavaScript errors that origininate within the
57+
Angular intercepts uncaught JavaScript errors that originate within the
5858
Angular application. Because Angular intercepts these errors, they will not be
5959
recorded by the web client. This can be fixed by creating an error handler that
6060
records uncaught errors using the web client's `recordError` command:

docs/cdn_installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ the following:
1616

1717
## Arguments
1818

19-
The code snippet accepts six arguments. The snippet below shows these arguments with the body of the snippet's function ommitted for readability:
19+
The code snippet accepts six arguments. The snippet below shows these arguments with the body of the snippet's function omitted for readability:
2020
```html
2121
<script>
2222
(function(n,i,v,r,s,c,u,x,z){...})(
@@ -41,9 +41,9 @@ The code snippet accepts six arguments. The snippet below shows these arguments
4141

4242
## Configuration
4343

44-
The application-specific web client configuration is a JavaScript object whose fields are all optional. While these feilds are optional, depending on your application the web client may not function properly if certain fields are omitted. For example, `identityPoolId` and `guestRoleArn` are both required unless your application performs its own AWS authentication and passes the credentials to the web client using the command `cwr('setAwsCredentials', {...});`.
44+
The application-specific web client configuration is a JavaScript object whose fields are all optional. While these fields are optional, depending on your application the web client may not function properly if certain fields are omitted. For example, `identityPoolId` and `guestRoleArn` are both required unless your application performs its own AWS authentication and passes the credentials to the web client using the command `cwr('setAwsCredentials', {...});`.
4545

46-
The snippet below shows several configuration opions with the body of the snippet's function ommitted for readability:
46+
The snippet below shows several configuration options with the body of the snippet's function omitted for readability:
4747
```html
4848
<script>
4949
(function(n,i,v,r,s,c,u,x,z){...})(

docs/cdn_react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ export default Container;
5757

5858
## Instrument Error Handling to Record Errors
5959

60-
React intercepts uncaught JavaScript errors that origininate within the React
60+
React intercepts uncaught JavaScript errors that originate within the React
6161
application. Because React intercepts these errors, they will not be recorded by
6262
the web client. This can be fixed by adding [error
63-
boundries](https://reactjs.org/blog/2017/07/26/error-handling-in-react-16.html)
63+
boundaries](https://reactjs.org/blog/2017/07/26/error-handling-in-react-16.html)
6464
that record uncaught errors using the web client's `recordError` command:
6565

6666
```typescript

0 commit comments

Comments
 (0)