Skip to content

Commit 44e5c6d

Browse files
committed
doc: fixed a few typos in various places of the documentation.
1 parent 71bcd40 commit 44e5c6d

12 files changed

+24
-24
lines changed

README.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Prerequisites
9494

9595
**WARNING** This library is included with every OpenResty release. You should use the bundled version
9696
of this library in the particular OpenResty release you are using. Otherwise you may run
97-
into serious comaptibility issues.
97+
into serious compatibility issues.
9898

9999
* LuaJIT 2.1 (for now, it is the v2.1 git branch in the official luajit-2.0 git repository: http://luajit.org/download.html )
100100
* [ngx_http_lua_module](https://github.com/openresty/lua-nginx-module) v0.10.15.

lib/ngx/balancer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ See Also
298298
========
299299
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
300300
* the [balancer_by_lua*](https://github.com/openresty/lua-nginx-module#balancer_by_lua_block) directive.
301-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
302-
* OpenResty: http://openresty.org
301+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
302+
* OpenResty: https://openresty.org
303303

304304
[Back to TOC](#table-of-contents)

lib/ngx/base64.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
129129

130130
See Also
131131
========
132-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
132+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
133133
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
134-
* OpenResty: http://openresty.org
134+
* OpenResty: https://openresty.org
135135

136136
[Back to TOC](#table-of-contents)
137137

lib/ngx/errlog.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -421,9 +421,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
421421

422422
See Also
423423
========
424-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
424+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
425425
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
426-
* OpenResty: http://openresty.org
426+
* OpenResty: https://openresty.org
427427

428428
[Back to TOC](#table-of-contents)
429429

lib/ngx/ocsp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ See Also
292292
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
293293
* the [ngx.ssl](ssl.md) module.
294294
* the [ssl_certificate_by_lua*](https://github.com/openresty/lua-nginx-module/#ssl_certificate_by_lua_block) directive.
295-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
296-
* OpenResty: http://openresty.org
295+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
296+
* OpenResty: https://openresty.org
297297

298298
[Back to TOC](#table-of-contents)

lib/ngx/pipe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
552552

553553
See Also
554554
========
555-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
555+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
556556
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
557557
* OpenResty: https://openresty.org
558558

lib/ngx/process.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,9 +222,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
222222

223223
See Also
224224
========
225-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
225+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
226226
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
227-
* OpenResty: http://openresty.org
227+
* OpenResty: https://openresty.org
228228

229229
[Back to TOC](#table-of-contents)
230230

lib/ngx/re.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ Splits the `subject` string using the Perl compatible regular expression
6767
`regex` with the optional `options`.
6868

6969
This function returns a Lua (array) table (with integer keys) containing the
70-
splitted values.
70+
split values.
7171

7272
In case of error, `nil` will be returned as well as a string describing the
7373
error.
7474

7575
When `regex` contains a sub-match capturing group, and when such a match is
76-
found, the first submatch capture will be inserted in between each splitted
76+
found, the first submatch capture will be inserted in between each split
7777
value, like so:
7878

7979
```lua
@@ -242,8 +242,8 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
242242

243243
See Also
244244
========
245-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
245+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
246246
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
247-
* OpenResty: http://openresty.org
247+
* OpenResty: https://openresty.org
248248

249249
[Back to TOC](#table-of-contents)

lib/ngx/resp.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
125125

126126
See Also
127127
========
128-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
128+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
129129
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
130-
* OpenResty: http://openresty.org
130+
* OpenResty: https://openresty.org
131131

132132
[Back to TOC](#table-of-contents)
133133

lib/ngx/semaphore.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -348,9 +348,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
348348

349349
See Also
350350
========
351-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
351+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
352352
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
353-
* OpenResty: http://openresty.org
353+
* OpenResty: https://openresty.org
354354

355355
[Back to TOC](#table-of-contents)
356356

lib/ngx/ssl.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ See Also
530530
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
531531
* the [ngx.ocsp](ocsp.md) module.
532532
* the [ssl_certificate_by_lua*](https://github.com/openresty/lua-nginx-module/#ssl_certificate_by_lua_block) directive.
533-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
534-
* OpenResty: http://openresty.org
533+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
534+
* OpenResty: https://openresty.org
535535

536536
[Back to TOC](#table-of-contents)

lib/ngx/ssl/session.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ get_serialized_session
176176

177177
**context:** *ssl_session_store_by_lua**
178178

179-
Returns the serialized form of the SSL sesson data of the current SSL connection, in a Lua string.
179+
Returns the serialized form of the SSL session data of the current SSL connection, in a Lua string.
180180

181181
This session can be cached in [lua-resty-lrucache](https://github.com/openresty/lua-resty-lrucache), [lua_shared_dict](https://github.com/openresty/lua-nginx-module#lua_shared_dict),
182182
and/or external data storage services like `memcached` and `redis`. The SSL session ID returned
@@ -271,7 +271,7 @@ See Also
271271
* the ngx_lua module: https://github.com/openresty/lua-nginx-module
272272
* the [ssl_session_fetch_by_lua*](https://github.com/openresty/lua-nginx-module/#ssl_session_fetch_by_lua_block) directive.
273273
* the [ssl_session_store_by_lua*](https://github.com/openresty/lua-nginx-module/#ssl_session_store_by_lua_block) directive.
274-
* library [lua-resty-core](https://github.com/openresty/lua-resty-core)
274+
* the [lua-resty-core](https://github.com/openresty/lua-resty-core) library.
275275
* OpenResty: https://openresty.org
276276

277277
[Back to TOC](#table-of-contents)

0 commit comments

Comments
 (0)