Skip to content

Commit f325279

Browse files
authored
typos (#47)
1 parent 5e13374 commit f325279

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ for row in results
2626
row[1] # access the first column in the row results
2727
end
2828

29-
# results also implicitly satisfy the Tables.jl `Tables.rows` inteface, so any compatible sink can ingest results
29+
# results also implicitly satisfy the Tables.jl `Tables.rows` interface, so any compatible sink can ingest results
3030
df = DataFrame(results)
3131
CSV.write("results.csv", results)
3232

src/DBInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const StatementParams = Union{PositionalStatementParams, NamedStatementParams}
111111
Database packages should overload `DBInterface.execute` for a valid, prepared `DBInterface.Statement` subtype (the first method
112112
signature is defined in DBInterface.jl using `DBInterface.prepare`), which takes an optional `params` argument, which should be
113113
an indexable collection (`Vector` or `Tuple`) for positional parameters, or a `NamedTuple` for named parameters.
114-
Alternatively, the parameters could be specified as keyword agruments of `DBInterface.execute`.
114+
Alternatively, the parameters could be specified as keyword arguments of `DBInterface.execute`.
115115
116116
`DBInterface.execute` should return a valid `DBInterface.Cursor` object, which is any iterator of "rows",
117117
which themselves must be property-accessible (i.e. implement `propertynames` and `getproperty` for value access by name),

0 commit comments

Comments
 (0)