From 9d33ca4bee727cc1a74fc5ecb898def34336dd80 Mon Sep 17 00:00:00 2001 From: Matt McGillivray Date: Tue, 22 Aug 2023 14:54:54 +0800 Subject: [PATCH] updated docs --- packages/docs/docs/lambda/changelog.md | 2 +- packages/docs/docs/lambda/estimateprice.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/docs/docs/lambda/changelog.md b/packages/docs/docs/lambda/changelog.md index 9a1232109f0..764249e62b3 100644 --- a/packages/docs/docs/lambda/changelog.md +++ b/packages/docs/docs/lambda/changelog.md @@ -293,7 +293,7 @@ Lambda version: '2021-12-16' Stability and ease of use improvements that we implemented from our learnings from https://githubwrapped.com! -- Fixed an error `Parameter 'durationInMiliseconds' must be over 0 but is [negative number]` +- Fixed an error `Parameter 'durationInMilliseconds' must be over 0 but is [negative number]` - The function name of a deployed function is not random anymore. Instead it has the format of `remotion-render-2021-12-16-2048mb-120sec` - More CLI commands support the `-q` (quiet) flag. - Calling `npx remotion lambda functions deploy` if a suitable function already exists will not throw an error anymore but log the existing function. diff --git a/packages/docs/docs/lambda/estimateprice.md b/packages/docs/docs/lambda/estimateprice.md index b36aa6c5618..054bce8f5c0 100644 --- a/packages/docs/docs/lambda/estimateprice.md +++ b/packages/docs/docs/lambda/estimateprice.md @@ -27,7 +27,7 @@ import { estimatePrice } from "@remotion/lambda"; console.log( estimatePrice({ region: "us-east-1", - durationInMiliseconds: 20000, + durationInMilliseconds: 20000, memorySizeInMb: 2048, diskSizeInMb: 2048, lambdasInvoked: 1, @@ -47,9 +47,9 @@ The region in which the Lambda function is executed in. [Pricing varies across r The amount of memory that has been given to the Lambda function. May be received with [`getFunctionInfo()`](/docs/lambda/getfunctioninfo). -### `durationInMiliseconds` +### `durationInMilliseconds` -The estimated total execution duration in miliseconds of all Lambdas combined. See the top of this page for a guide on how to approximate the duration. +The estimated total execution duration in Milliseconds of all Lambdas combined. See the top of this page for a guide on how to approximate the duration. ### `lambdasInvoked`