We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 089ce76 commit adb3432Copy full SHA for adb3432
internal/handlers/save.go
@@ -43,10 +43,10 @@ func Save(w http.ResponseWriter, r *http.Request) {
43
44
// Define a function to merge old and new content
45
mergeContentFunc := func(oldContent, newContent string) string {
46
- meredContent := newContent
47
- log.Trace().Msgf("Merging content: %s", meredContent)
+ mergedContent := newContent
+ log.Trace().Msgf("Merging content: %s", mergedContent)
48
49
- return meredContent
+ return mergedContent
50
}
51
52
// Define a function for updating content in storage
0 commit comments