From ea904bf7ad791d4c842851623094c94860e6191f Mon Sep 17 00:00:00 2001 From: Joyce Quach Date: Thu, 18 Jan 2024 14:55:15 -0500 Subject: [PATCH] Fix typo --- .../java/org/hl7/davinci/ehrserver/authproxy/AuthProxy.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/hl7/davinci/ehrserver/authproxy/AuthProxy.java b/src/main/java/org/hl7/davinci/ehrserver/authproxy/AuthProxy.java index 42ba3e8..3ad82d2 100644 --- a/src/main/java/org/hl7/davinci/ehrserver/authproxy/AuthProxy.java +++ b/src/main/java/org/hl7/davinci/ehrserver/authproxy/AuthProxy.java @@ -42,7 +42,7 @@ public class AuthProxy { * before redirecting back to the smart app. * @param reqParamValue - The parameters of the request * @param httpServletResponse - The response object to be sent back - * @param request - The request that has been recieved + * @param request - The request that has been received * @throws IOException - the uri components builder might throw an IO */ @GetMapping("/auth") @@ -120,7 +120,7 @@ public AuthResponse getLaunch(@RequestBody Payload payload) { * @param launch - the launch id is included in the path * @param reqParamValue - the parameters of the url should include only the code, state, and the original redirect url * @param httpServletResponse - the response object - * @param request - the request recieved + * @param request - the request received */ @GetMapping("/_auth/{launch}") public void authSync(@PathVariable String launch, @RequestParam Map reqParamValue, HttpServletResponse httpServletResponse, HttpServletRequest request) {