From 48c327c681da481b7c36c674307bd58adfa4286c Mon Sep 17 00:00:00 2001 From: Justin Duke Date: Mon, 24 Aug 2020 03:44:34 -0700 Subject: [PATCH] Fix schema typo (#7491) --- 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'],