Skip to content

Commit d6db04b

Browse files
author
Carlton Duffett
authored
Typo
1 parent e78cd80 commit d6db04b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

merge/resource_traversal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ func traverse(value reflect.Value, paths PathMap, path string) {
3636
// Traverse all non-nil fields in the struct, building up their json paths.
3737
for i := 0; i < value.NumField(); i++ {
3838
jsonPath := value.Type().Field(i).Tag.Get("json")
39-
// jsonPath will be empty for inline resourced (e.g. DomainResource).
39+
// jsonPath will be empty for inline resources (e.g. DomainResource).
4040
if jsonPath != "" {
4141
prefix := ""
4242
// The path is empty if we're currently traversing the top-level object (e.g. Patient).

0 commit comments

Comments
 (0)