@@ -28,7 +28,7 @@ var skipDnForDelete map[string]bool
28
28
// attributes will be ignored when comparing the LDIF strings.
29
29
// The output is a string, a valid LDIF, and can be added to the "target"
30
30
// database (the one that created targetStr) in order to make it
31
- // equal to the * source* database (the one that created sourceStr). In case of
31
+ // equal to the " source" database (the one that created sourceStr). In case of
32
32
// failure, an error is provided.
33
33
func Diff (sourceStr , targetStr string , ignoreAttr []string ) (string , error ) {
34
34
return genericDiff (sourceStr , targetStr , ignoreAttr , convertLdifStr , nil )
@@ -39,7 +39,7 @@ func Diff(sourceStr, targetStr string, ignoreAttr []string) (string, error) {
39
39
// supplied. These attributes will be ignored when comparing the LDIF strings.
40
40
// The output is a string, a valid LDIF, and can be added to the "target"
41
41
// database (the one that created targetFile) in order to make it equal to the
42
- // * source* database (the one that created sourceFile). In case of failure, an
42
+ // " source" database (the one that created sourceFile). In case of failure, an
43
43
// error is provided.
44
44
func DiffFromFiles (sourceFile , targetFile string , ignoreAttr []string ) (string , error ) {
45
45
return genericDiff (sourceFile , targetFile , ignoreAttr , importLdifFile , nil )
0 commit comments