Codebase list golang-github-go-kit-kit / e317ca4
Fix typo Tony Hsu authored 6 years ago GitHub committed 6 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
148148 // struct, which is a combination of 2 anonymous functions: the first
149149 // function actually runs the component, and the second function should
150150 // interrupt the first function and cause it to return. It's in these
151 // functions that we actually bin the Go kit server/handler structs to the
152 // concrete transports and start them running.
151 // functions that we actually bind the Go kit server/handler structs to the
152 // concrete transports and run them.
153153 //
154154 // Putting each component into its own block is mostly for aesthetics: it
155155 // clearly demarcates the scope in which each listener/socket may be used.