Skip to content

Commit a53c227

Browse files
committed
Minor cleanups.
1 parent ae34835 commit a53c227

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Aws/Lambda/Runtime.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ invokeAndRun callback manager lambdaApi event context = do
7171
invokeWithCallback
7272
:: Throws Error.Invocation
7373
=> Throws Error.EnvironmentVariableNotSet
74-
=> Runtime.RunCallback c
74+
=> Runtime.RunCallback context
7575
-> ApiInfo.Event
76-
-> Context.Context c
76+
-> Context.Context context
7777
-> IO Runtime.LambdaResult
7878
invokeWithCallback callback event context = do
7979
handlerName <- Environment.handlerName

src/Aws/Lambda/Runtime/Publish.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ runtimeInitError :: ToJSON err => err -> String -> Context context -> Http.Manag
4949
runtimeInitError err lambdaApi =
5050
publish err (Endpoints.runtimeInitError lambdaApi)
5151

52-
publish :: ToJSON err => err -> Endpoints.Endpoint -> Context c -> Http.Manager -> IO ()
52+
publish :: ToJSON err => err -> Endpoints.Endpoint -> Context context -> Http.Manager -> IO ()
5353
publish err (Endpoints.Endpoint endpoint) Context{..} manager = do
5454
rawRequest <- Http.parseRequest endpoint
5555

0 commit comments

Comments
 (0)