From ec03383481be0c1233b130dcf0f8086bdd762fad Mon Sep 17 00:00:00 2001 From: Angad Sethi Date: Mon, 10 Jul 2023 16:50:14 +0530 Subject: [PATCH] fix: fix typo in docs Fix typo in `object.assign` docs. --- docs/object/assign.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/object/assign.mdx b/docs/object/assign.mdx index 83397e16..404f1674 100644 --- a/docs/object/assign.mdx +++ b/docs/object/assign.mdx @@ -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'