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
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
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"""
164164function 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"""
191191function getindex (env:: Environment , option:: Symbol )
192192 value = Ref {Cuint} (0 )
0 commit comments