Skip to content

Commit 14f65bf

Browse files
committed
fix(2015): rename remaining references
1 parent f287be4 commit 14f65bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type server struct {
1717
proto2015.SolutionServiceServer
1818
}
1919

20-
func (s *server) Day1(ctx context.Context, in *proto2015.SolutionRequest) (*aoc2015.SolutionResponse, error) {
20+
func (s *server) Day1(ctx context.Context, in *proto2015.SolutionRequest) (*proto2015.SolutionResponse, error) {
2121
input := in.Input
2222

2323
return &proto2015.SolutionResponse{
@@ -26,7 +26,7 @@ func (s *server) Day1(ctx context.Context, in *proto2015.SolutionRequest) (*aoc2
2626
}, nil
2727
}
2828

29-
func (s *server) Day2(ctx context.Context, in *proto2015.SolutionRequest) (*aoc2015.SolutionResponse, error) {
29+
func (s *server) Day2(ctx context.Context, in *proto2015.SolutionRequest) (*proto2015.SolutionResponse, error) {
3030
input := in.Input
3131

3232
return &proto2015.SolutionResponse{

0 commit comments

Comments
 (0)