Skip to content

Commit

Permalink
fix: fix typo in object.assign docs (#328)
Browse files Browse the repository at this point in the history
Fix typo in `object.assign` docs.
  • Loading branch information
AngadSethi authored Feb 21, 2024
1 parent 70a117b commit b41291b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/object/assign.mdx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: assign
description: Merges two objects together recursivly
description: Merges two objects together recursively
group: Object
---

## Basic usage

Merges two objects together recursivly into a new object applying values from right to left. Recursion only applies to child object properties.
Merges two objects together recursively into a new object applying values from right to left. Recursion only applies to child object properties.

```ts
import { assign } from 'radash'
Expand Down

0 comments on commit b41291b

Please sign in to comment.