Skip to content

Commit c58b53a

Browse files
committed
Fix doc typos.
1 parent 0e4aeaf commit c58b53a

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/environment.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ end
5151

5252
"""Open an environment handle
5353
54-
`open` function accepts folowing parameters:
54+
`open` function accepts following parameters:
5555
* `env` db environment object
5656
* `path` directory in which the database files reside
5757
* `flags` defines special options for the environment
@@ -150,7 +150,7 @@ end
150150

151151
"""Set environment flags and parameters
152152
153-
`setindex!` accepts folowing parameters:
153+
`setindex!` accepts following parameters:
154154
* `env` db environment object
155155
* `option` symbol which indicates parameter. Currently supported parameters:
156156
* Flags
@@ -159,7 +159,7 @@ end
159159
* DBs
160160
* `value` parameter value
161161
162-
**Note:** Consult LMDB documentation for particual values of environment parameters and flags.
162+
**Note:** Consult LMDB documentation for particular values of environment parameters and flags.
163163
"""
164164
function setindex!(env::Environment, val::Integer, option::Symbol)
165165
if option == :Flags
@@ -179,14 +179,14 @@ end
179179

180180
"""Get environment flags and parameters
181181
182-
`getindex` accepts folowing parameters:
182+
`getindex` accepts following parameters:
183183
* `env` db environment object
184184
* `option` symbol which indicates parameter. Currently supported parameters:
185185
* Flags
186186
* Readers
187187
* KeySize
188188
189-
**Note:** Consult LMDB documentation for particual values of environment parameters and flags.
189+
**Note:** Consult LMDB documentation for particular values of environment parameters and flags.
190190
"""
191191
function getindex(env::Environment, option::Symbol)
192192
value = Ref{Cuint}(0)

0 commit comments

Comments
 (0)