Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Update importing.md #94

Merged
merged 1 commit into from
Oct 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion importing.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (
Notice that we're loading the driver anonymously, aliasing its package qualifier
to `_` so none of its exported names are visible to our code. Under the hood,
the driver registers itself as being available to the `database/sql` package,
but in general nothing else happens.
but in general nothing else happens with the exception that the init function is run.

Now you're ready to access a database.

Expand Down