matryer / goblueprints

Source code for Go Programming Blueprints
1.49k stars 356 forks source link

Chapter2: Syntax error #39

Closed ehernandez-xk closed 7 years ago

ehernandez-xk commented 7 years ago

The page 53 has a little syntax error:

w.Header.Set("Location", loginUrl)

Header is a function that returns the Header. Should be:

w.Header().Set("Location", loginUrl)

If you did it on purpose to learn =0) it is ok.

matryer commented 7 years ago

Good catch.