From ffbe11152c7f7d51f68850a2a6ba217f3c25f40c Mon Sep 17 00:00:00 2001 From: Lucas Alves Date: Tue, 4 Feb 2020 12:24:00 -0300 Subject: [PATCH] Correcting class name in the example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 886eec5..9e55386 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ In order to implement `http_interceptor` you need to implement the `InterceptorC - Logging with interceptor: ```dart -class LogginInterceptor implements InterceptorContract { +class LoggingInterceptor implements InterceptorContract { @override Future interceptRequest({RequestData data}) async { print(data);