From b4ad52a6ec617e254472fbe9c2997624a6a31a06 Mon Sep 17 00:00:00 2001 From: jazzgal Date: Sun, 24 Apr 2016 16:01:42 +0700 Subject: [PATCH] Comment typo --- examples/route_guide/server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/route_guide/server/server.go b/examples/route_guide/server/server.go index 09b3942d..c8be4970 100644 --- a/examples/route_guide/server/server.go +++ b/examples/route_guide/server/server.go @@ -82,7 +82,7 @@ func (s *routeGuideServer) GetFeature(ctx context.Context, point *pb.Point) (*pb return &pb.Feature{"", point}, nil } -// ListFeatures lists all features comtained within the given bounding Rectangle. +// ListFeatures lists all features contained within the given bounding Rectangle. func (s *routeGuideServer) ListFeatures(rect *pb.Rectangle, stream pb.RouteGuide_ListFeaturesServer) error { for _, feature := range s.savedFeatures { if inRange(feature.Location, rect) {