Skip to content

Commit 0bca1a3

Browse files
authored
Merge branch 'main' into sql-styles
2 parents 93a22c0 + ae076fc commit 0bca1a3

3 files changed

Lines changed: 14 additions & 10 deletions

File tree

CONTRIBUTING.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,13 @@ introduce yourself and to meet some of our community members.
2626

2727
2. If you have a [GitHub][github] account, or are willing to [create
2828
one][github-join], but do not know how to use Git, you can report problems
29-
or suggest improvements by [creating an issue][issues]. This allows us to
30-
assign the item to someone and to respond to it in a threaded discussion.
29+
or suggest improvements by [creating an issue][repo-issues]. This allows us
30+
to assign the item to someone and to respond to it in a threaded discussion.
3131

3232
3. If you are comfortable with Git, and would like to add or change material,
3333
you can submit a pull request (PR). Instructions for doing this are
34-
[included below](#using-github).
34+
[included below](#using-github). For inspiration about changes that need to
35+
be made, check out the [list of open issues][issues] across the Carpentries.
3536

3637
Note: if you want to build the website locally, please refer to [The Workbench
3738
documentation][template-doc].
@@ -49,8 +50,8 @@ There are many ways to contribute, from writing new exercises and improving
4950
existing ones to updating or filling in the documentation and submitting [bug
5051
reports][issues] about things that do not work, are not clear, or are missing.
5152
If you are looking for ideas, please see [the list of issues for this
52-
repository][repo], or the issues for [Data Carpentry][dc-issues], [Library
53-
Carpentry][lc-issues], and [Software Carpentry][swc-issues] projects.
53+
repository][repo-issues], or the issues for [Data Carpentry][dc-issues],
54+
[Library Carpentry][lc-issues], and [Software Carpentry][swc-issues] projects.
5455

5556
Comments on issues and reviews of pull requests are just as welcome: we are
5657
smarter together than we are on our own. **Reviews from novices and newcomers
@@ -101,7 +102,8 @@ community listed at <https://carpentries.org/connect/> including via social
101102
media, slack, newsletters, and email lists. You can also [reach us by
102103
email][contact].
103104

104-
[repo]: https://example.com/FIXME
105+
[repo]: https://github.com/LibraryCarpentry/lc-sql
106+
[repo-issues]: https://github.com/LibraryCarpentry/lc-sql/issues
105107
[contact]: mailto:team@carpentries.org
106108
[cp-site]: https://carpentries.org/
107109
[dc-issues]: https://github.com/issues?q=user%3Adatacarpentry
@@ -111,7 +113,7 @@ email][contact].
111113
[github]: https://github.com
112114
[github-flow]: https://guides.github.com/introduction/flow/
113115
[github-join]: https://github.com/join
114-
[how-contribute]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github
116+
[how-contribute]: https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github
115117
[issues]: https://carpentries.org/help-wanted-issues/
116118
[lc-issues]: https://github.com/issues?q=user%3ALibraryCarpentry
117119
[swc-issues]: https://github.com/issues?q=user%3Aswcarpentry

episodes/04-ordering-commenting.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,10 @@ their effects as we went along. For complex queries, this is a good strategy, t
7373
When the queries become more complex, it can be useful to add comments to express to yourself, or to others, what you are doing with your query. Comments help explain the logic of a section and provide context for anyone reading the query. It's essentially a way of making notes within your SQL. In SQL, comments begin using <code class="language-plaintext highlighter-rouge">\--</code> and end at the end of the line. To mark a whole paragraph as a comment, you can enclose it with the characters /\* and \*/. For example, a commented version of the above query can be written as:
7474

7575
```sql
76-
/*In this section, even though JOINS (see link below this code block) are not introduced until Episode 6, we want to give an example how to
77-
join multiple tables because they represent a good example of using comments in SQL to explain more complex queries.*/
76+
/*In this section, even though JOINS (see link below this code block)
77+
are not introduced until Episode 6, we want to give an example how to
78+
join multiple tables because they represent a good example of using
79+
comments in SQL to explain more complex queries.*/
7880

7981
-- First we mention all the fields we want to display
8082
SELECT articles.Title, articles.First_Author, journals.Journal_Title, publishers.Publisher

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This Library Carpentry lesson introduces librarians to relational database manag
88

99
## Before You Start:
1010

11-
You will need to install **DB Browser for SQLite** and download the **doaj-article-sample** database. See [Setup](https://librarycarpentry.org/lc-sql/setup.html) for instructions and further information.
11+
You will need to install **DB Browser for SQLite** and download the **doaj-article-sample** database. See [Setup](learners/setup.md) for instructions and further information.
1212

1313

1414
::::::::::::::::::::::::::::::::::::::::::::::::::

0 commit comments

Comments
 (0)