From 62dd43ab0721e13512cbbcb42bb4dbefac33390f Mon Sep 17 00:00:00 2001 From: Justin Duke Date: Fri, 21 Aug 2020 09:15:00 -0700 Subject: [PATCH] Fix typo (accros -> across) --- rest_framework/schemas/openapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/schemas/openapi.py b/rest_framework/schemas/openapi.py index 9774a94c7..8a8e267e0 100644 --- a/rest_framework/schemas/openapi.py +++ b/rest_framework/schemas/openapi.py @@ -50,7 +50,7 @@ class SchemaGenerator(BaseSchemaGenerator): 'You have a duplicated operationId in your OpenAPI schema: {operation_id}\n' '\tRoute: {route1}, Method: {method1}\n' '\tRoute: {route2}, Method: {method2}\n' - '\tAn operationId has to be unique accros your schema. Your schema may not work in other tools.' + '\tAn operationId has to be unique across your schema. Your schema may not work in other tools.' .format( route1=ids[operation_id]['route'], method1=ids[operation_id]['method'],