Skip to content

Commit

Permalink
Merge pull request #288 from zlabjp/fix-typo
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
tatsuhiro-t authored Jan 24, 2024
2 parents 1a8bbbc + 512503f commit 135a809
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ In particular:

```
I0323 04:39:16.552830 8 utils.go:90] nghttpx configuration diff /etc/nghttpx/nghttpx.conf
--- currnet
--- current
+++ new
@@ -1,7 +1,41 @@
-# A very simple nghttpx configuration file that forces nghttpx to start.
Expand Down
2 changes: 1 addition & 1 deletion pkg/controller/util_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func TestUniqLoadBalancerIngress(t *testing.T) {
ans []networkingv1.IngressLoadBalancerIngress
}{
{
desc: "Emptry input",
desc: "Empty input",
},
{
desc: "With duplicates",
Expand Down
2 changes: 1 addition & 1 deletion pkg/nghttpx/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func diff(b1, b2 []byte) (string, error) {
d := difflib.UnifiedDiff{
A: difflib.SplitLines(string(b1)),
B: difflib.SplitLines(string(b2)),
FromFile: "currnet",
FromFile: "current",
ToFile: "new",
Context: 3,
}
Expand Down

0 comments on commit 135a809

Please sign in to comment.