From 3fbc1aeae752308a19b4e3cad5bcb0f38d26cdf7 Mon Sep 17 00:00:00 2001 From: Mihir Bhansali Date: Tue, 27 Jun 2023 10:11:24 -0400 Subject: [PATCH] updated the modification object in ldap.change --- docs/client.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/client.md b/docs/client.md index 8caabb0..1f77800 100644 --- a/docs/client.md +++ b/docs/client.md @@ -213,7 +213,8 @@ Example: const change = new ldap.Change({ operation: 'add', modification: { - pets: ['cat', 'dog'] + type: 'pets', + values: ['cat', 'dog'] } });