소스 검색

update 15.3 (#528)

xin zhao 7 년 전
부모
커밋
d44f630d0c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      eBook/15.3.md

+ 1 - 1
eBook/15.3.md

@@ -139,7 +139,7 @@ go为所有的HTTP状态码定义了常量,比如:
 	http.StatusNotFound		= 404
 	http.StatusInternalServerError	= 500
 
-你可以使用`w.header().Set("Content-Type", "../..")设置头信息
+你可以使用`w.header().Set("Content-Type", "../..")`设置头信息
 
 比如在网页应用发送html字符串的时候,在输出之前执行`w.Header().Set("Content-Type", "text/html")`。