Skip to content

Commit 74f0b45

Browse files
authored
formatting
1 parent 05412c3 commit 74f0b45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -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.
3333
func 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.
4444
func DiffFromFiles(sourceFile, targetFile string, ignoreAttr []string) (string, error) {
4545
return genericDiff(sourceFile, targetFile, ignoreAttr, importLdifFile, nil)

0 commit comments

Comments
 (0)