@@ -28,7 +28,7 @@ var skipDnForDelete map[string]bool
2828// attributes will be ignored when comparing the LDIF strings.
2929// The output is a string, a valid LDIF, and can be added to the "target"
3030// 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
3232// failure, an error is provided.
3333func Diff (sourceStr , targetStr string , ignoreAttr []string ) (string , error ) {
3434 return genericDiff (sourceStr , targetStr , ignoreAttr , convertLdifStr , nil )
@@ -39,7 +39,7 @@ func Diff(sourceStr, targetStr string, ignoreAttr []string) (string, error) {
3939// supplied. These attributes will be ignored when comparing the LDIF strings.
4040// The output is a string, a valid LDIF, and can be added to the "target"
4141// 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
4343// error is provided.
4444func DiffFromFiles (sourceFile , targetFile string , ignoreAttr []string ) (string , error ) {
4545 return genericDiff (sourceFile , targetFile , ignoreAttr , importLdifFile , nil )
0 commit comments