Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: a misspelled word fix #556

Merged
merged 1 commit into from Nov 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -49,7 +49,7 @@ After `installation <#Installation>`__, you'll need to edit your Django
.. code:: python

INSTALLED_APPS = [
'spanner_django',
'django_spanner',
...
]

Expand All @@ -62,7 +62,7 @@ Format

DATABASES = {
'default': {
'ENGINE': 'spanner_django',
'ENGINE': 'django_spanner',
'PROJECT': '<project_id>',
'INSTANCE': '<instance_id>',
'NAME': '<database_name>',
Expand All @@ -81,7 +81,7 @@ Database configurations

DATABASES = {
'default': {
'ENGINE': 'spanner_django',
'ENGINE': 'django_spanner',
'PROJECT': 'appdev-soda-spanner-staging', # Or the GCP project-id
'INSTANCE': 'django-dev1', # Or the Cloud Spanner instance
'NAME': 'db1', # Or the Cloud Spanner database to use
Expand Down