From b27ef5e95ccde3c4a1055b4d0a600ff6f97518d2 Mon Sep 17 00:00:00 2001 From: Rafael Leite <2132564+leite08@users.noreply.github.com> Date: Thu, 12 Oct 2023 21:10:42 -0500 Subject: [PATCH] Fix typos on README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd129d0..7d9cf1a 100644 --- a/README.md +++ b/README.md @@ -65,10 +65,10 @@ a subclass of [ApiError](src/main/java/com/metriport/api/core/ApiError.java) will be thrown: ```ts -import com.assemblyai.api.core.ApiError; +import com.metriport.api.core.ApiError; try { - aai.medical().organization.create(...); + api.medical().organization.create(...); } catch (ApiError error) { System.out.println(error.getBody()); System.out.println(error.getStatusCode());