Update DEFAULT_SCHEMA_CLASSES default value in Settings docs (#7014)

The default value was changed to point to the OpenAPI AutoSchema class.  The docs were leading users to believe that rest_framework.schemas.AutoSchema was the default.  As of this commit, the root AutoSchema is in fact imported from the coreapi module.
This commit is contained in:
Aaron Yong 2019-11-06 13:37:13 -07:00 committed by Carlton Gibson
parent 5e8fe6edf0
commit 14d740d088

View File

@ -101,7 +101,7 @@ Default: `'rest_framework.negotiation.DefaultContentNegotiation'`
A view inspector class that will be used for schema generation.
Default: `'rest_framework.schemas.AutoSchema'`
Default: `'rest_framework.schemas.openapi.AutoSchema'`
---