Skip to content

Commit fcf23df

Browse files
committed
Correcting typos
1 parent 2e93f0d commit fcf23df

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
DynamoDB
22
-----
33
The Drupal DynamoDB module provides integration with AWS DynamoDB services.
4-
Current integration provides basic database wrapper for use with DynamoDB.
4+
Current integration provides a basic database wrapper for use with DynamoDB.
55

66
# Features
77
* DynamoDB table CRUD operations: create, delete, update and list tables
@@ -82,7 +82,7 @@ from DynamoDb. See more details below.
8282

8383
**Important**
8484
Whilst needs of different projects could be different, for that reason billing
85-
and read consistency can be defined trough settings per an
85+
and read consistency can be defined through settings per an
8686
instance or per each table. As well, read consistency can be set inside each
8787
query which you perform if you choose to add `ConsistencyRead => TRUE`
8888
inside your query.
@@ -91,10 +91,10 @@ inside your query.
9191

9292
### Initialize connection - default instance
9393
```
94-
# Drupal core Mysql.
94+
# Drupal core MySQL.
9595
Drupal::database();
9696
97-
# DynamoDB - access to DynamoDB trough Drupal wrapper.
97+
# DynamoDB - access to DynamoDB through Drupal wrapper.
9898
DynamoDb::database();
9999
100100
# DynamoDB - access directly to DynamoDB, without Drupal wrapper.
@@ -103,7 +103,7 @@ DynamoDb::rawDatabase();
103103

104104
### Initialize connection - different instance
105105
```
106-
# Drupal core Mysql.
106+
# Drupal core MySQL.
107107
Drupal::database('mysql_replica');
108108
109109
# DynamoDB

0 commit comments

Comments
 (0)