Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
UmungoBungo committed Aug 22, 2023
1 parent 44421b5 commit 9d33ca4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/docs/docs/lambda/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions packages/docs/docs/lambda/estimateprice.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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`

Expand Down

0 comments on commit 9d33ca4

Please sign in to comment.