Skip to content

Commit fa8c7f4

Browse files
committed
Minor spellcheck doc updates
1 parent 6b14631 commit fa8c7f4

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

inst/@octave_sqlite/execute.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
## -*- texinfo -*-
2020
## @deftypefn {} {} execute (@var{db}, @var{sqlquery})
21-
## Execute non select sql query @var{sqlquery} on a sqlite database.
21+
## Execute non select SQL query @var{sqlquery} on a sqlite database.
2222
##
2323
## @subsubheading Inputs
2424
## @table @asis

inst/@octave_sqlite/fetch.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
## -*- texinfo -*-
2020
## @deftypefn {} {@var{data} =} fetch (@var{db}, @var{sqlquery})
2121
## @deftypefnx {} {@var{data} =} fetch (@var{db}, @var{sqlquery}, @var{propertyname}, @var{propertyvalue} @dots{})
22-
## Return rows of data after runnning a sql query on a sqlite database.
22+
## Return rows of data after running a SQL query on a sqlite database.
2323
##
2424
## @subsubheading Inputs
2525
## @table @asis
2626
## @item @var{db}
2727
## currently open sqlite database.
2828
## @item @var{sqlquery}
29-
## String containing a valid select sqlquery.
29+
## String containing a valid select SQL query.
3030
## @item @var{propertyname}, @var{propertyvalue}
3131
## property name/value pairs where known properties are:
3232
## @table @asis

inst/@octave_sqlite/sqlwrite.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
## @deftypefnx {} {} sqlwrite (@var{db}, @var{tablename}, @var{data}, @var{propertyname}, @var{propertyvalue} @dots{})
2323
## Insert rows of data from @var{tablename}.
2424
##
25-
## If the table does not exist it will be created, using the ColumnType propery if available
25+
## If the table does not exist it will be created, using the ColumnType properyy if available
2626
## otherwise, the type of input data will be used to determine field types.
2727
##
2828
## @subsubheading Inputs
@@ -32,7 +32,7 @@
3232
## @item @var{tablename}
3333
## Name of table to write data to
3434
## @item @var{data}
35-
## Table containing data to write to the database. Variables names are expected to match the databse.
35+
## Table containing data to write to the database. Variables names are expected to match the database.
3636
## @item @var{columntypes}
3737
## Optional cell array of same size as data used if table must be created. The column types may also
3838
## be passed in using the @var{propertyname}, @var{propertyvalue} syntax.

inst/dbtable.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
## @deftypefn {} {@var{table} =} dbtable()
2020
## @deftypefnx {} {@var{table} =} dbtable (@var{var1}, @dots{} @var{varn})
2121
## @deftypefnx {} {@var{table} =} dbtable (@dots{} @var{propertyname}, @var{propertyvalue})
22-
## Basic implementation of a table type to avoid dependancies on other packages.
22+
## Basic implementation of a table type to avoid dependencies on other packages.
2323
##
2424
## @subsubheading Inputs
2525
## @table @asis
@@ -31,9 +31,9 @@
3131
## Property name/value pairs, where known property names are:
3232
## @table @asis
3333
## @item VariableNames
34-
## a cell string matching the number of input columns with the name to use for the
34+
## A cell string matching the number of input columns with the name to use for the
3535
## @item DimensionNames
36-
## a cell string matching of length 2 for using as dimesion access. If not specified
36+
## A cell string matching of length 2 for using as dimension access. If not specified
3737
## it will be "Rows" and "Variables".
3838
## @end table
3939
## @end table

inst/sqlite.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
## @end table
4949
##
5050
## @subsubheading Examples
51-
## Open a sqlite database, failing if it doesnt exist.
51+
## Open a sqlite database, failing if it does not exist.
5252
## @example
5353
## @code {
5454
## db = sqlite("mytest.db");

0 commit comments

Comments
 (0)