Fix takes a raw map structure input, potentially transforms it in some way, and returns the new, transformed structure. The Fix method is allowed to mutate the input.
(input map[string]interface{})
| 15 | // in some way, and returns the new, transformed structure. The |
| 16 | // Fix method is allowed to mutate the input. |
| 17 | Fix(input map[string]interface{}) (map[string]interface{}, error) |
| 18 | |
| 19 | // Synopsis returns a string description of what the fixer actually |
| 20 | // does. |
no outgoing calls
no test coverage detected