Skip to content

Commit c9cf1e5

Browse files
committed
chore(docs): update deep_merge function usage to reflect new provider namespace
1 parent 3da8564 commit c9cf1e5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/functions/deep_merge.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ locals {
3838
config1 = { a = 1, b = { x = 10, y = 20 } }
3939
config2 = { a = 2, b = { y = 30, z = 40 } }
4040
41-
result = provider::deepmerge::mergo(local.config1, local.config2)
41+
result = provider::lara-utils::deep_merge([local.config1, local.config2])
4242
# Result: { a = 2, b = { x = 10, y = 30, z = 40 } }
4343
}
4444
```

internal/provider/deep_merge_function.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ locals {
2828
config1 = { a = 1, b = { x = 10, y = 20 } }
2929
config2 = { a = 2, b = { y = 30, z = 40 } }
3030
31-
result = provider::deepmerge::mergo(local.config1, local.config2)
31+
result = provider::lara-utils::deep_merge([local.config1, local.config2])
3232
# Result: { a = 2, b = { x = 10, y = 30, z = 40 } }
3333
}
3434
```

0 commit comments

Comments
 (0)