authorgravatar for jay@jayschwa.netJay Petacat <jay@jayschwa.net> 2019-09-15 23:21:21-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-09-15 23:39:36-04:00
logcddd6b46d8ad32f70e0b6c8c6f3192ae4bff9e79
tree56f0206880cde131f0d4eeaf944ab470326294a7
parent8223aca09bc93279a88d1439d6dfc437144ec578

Fix typos: "seperate" to "separate"

Fixes #3236

2 files changed, 2 insertions(+), 2 deletions(-)

src/main.cpp+1-1
...@@ -90,7 +90,7 @@ static int print_full_usage(const char *arg0, FILE *file, int return_code) {...@@ -90,7 +90,7 @@ static int print_full_usage(const char *arg0, FILE *file, int return_code) {
90 " -mllvm [arg] (unsupported) forward an arg to LLVM's option processing\n"90 " -mllvm [arg] (unsupported) forward an arg to LLVM's option processing\n"
91 " --override-std-dir [arg] override path to Zig standard library\n"91 " --override-std-dir [arg] override path to Zig standard library\n"
92 " --override-lib-dir [arg] override path to Zig lib library\n"92 " --override-lib-dir [arg] override path to Zig lib library\n"
93 " -ffunction-sections places each function in a seperate section\n"93 " -ffunction-sections places each function in a separate section\n"
94 "\n"94 "\n"
95 "Link Options:\n"95 "Link Options:\n"
96 " --bundle-compiler-rt for static libraries, include compiler-rt symbols\n"96 " --bundle-compiler-rt for static libraries, include compiler-rt symbols\n"
std/http/headers.zig+1-1
...@@ -299,7 +299,7 @@ pub const Headers = struct {...@@ -299,7 +299,7 @@ pub const Headers = struct {
299 return buf;299 return buf;
300 }300 }
301301
302 /// Returns all headers with the given name as a comma seperated string.302 /// Returns all headers with the given name as a comma separated string.
303 ///303 ///
304 /// Useful for HTTP headers that follow RFC-7230 section 3.2.2:304 /// Useful for HTTP headers that follow RFC-7230 section 3.2.2:
305 /// A recipient MAY combine multiple header fields with the same field305 /// A recipient MAY combine multiple header fields with the same field