Skip to content

Commit 2a146ba

Browse files
committed
wip
1 parent 2a25a1e commit 2a146ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SQLiteGraph.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ end
4242

4343
#-----------------------------------------------------------------------------# DB
4444
"""
45-
SimpleGraph.DB(file = ":memory")
45+
DB(file = ":memory")
4646
4747
Create a graph database (in memory by default). Edge and node properties are saved in the database
4848
as `TEXT` (see [https://www.sqlite.org/datatype3.html](https://www.sqlite.org/datatype3.html)) via `JSON3.write(props)`.
@@ -99,7 +99,7 @@ struct DB
9999
end
100100
end
101101
function Base.show(io::IO, db::DB)
102-
print(io, "SimpleGraphDB(\"$(db.sqlitedb.file)\") ($(n_nodes(db)) nodes, $(n_edges(db)) edges)")
102+
print(io, "SQLiteGraph.DB(\"$(db.sqlitedb.file)\") ($(n_nodes(db)) nodes, $(n_edges(db)) edges)")
103103
end
104104

105105
execute(db::DB, args...; kw...) = execute(db.sqlitedb, args...; kw...)

0 commit comments

Comments
 (0)