Skip to content

Commit 31c6d9d

Browse files
committed
(lint) Removing trailing spaces
1 parent 8f45eb0 commit 31c6d9d

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
EOF
7777
sudo mv ./pgdg.pref /etc/apt/preferences.d/
7878
sudo apt update
79-
79+
8080
- name: Add PostgreSQL APT repository
8181
run: |
8282
sudo apt-get purge postgresql-*

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
EOF
5252
sudo mv ./pgdg.pref /etc/apt/preferences.d/
5353
sudo apt update
54-
54+
5555
- name: Add PostgreSQL APT repository
5656
run: |
5757
sudo apt-get purge postgresql-*

doc/src/support.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ There are two mailing lists for pgRouting hosted on OSGeo discourse server:
6161
For general questions and topics about how to use pgRouting, please write to the
6262
user mailing list.
6363

64-
If you want to chat with fellow pgRouting users and contributors, you
64+
If you want to chat with fellow pgRouting users and contributors, you
6565
can join our matrix channel: `pgRouting matrix channel <https://matrix.to/#/#pgrouting:osgeo.org>`_.
6666

6767
You can also ask at `GIS StackExchange <https://gis.stackexchange.com/>`_ and

docqueries/metrics/bandwidth.result

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ FROM edges'
1414

1515
/* -- q2 */
1616
CREATE TABLE my_edges1 (
17-
id SERIAL PRIMARY KEY,
18-
source INTEGER,
19-
target INTEGER,
20-
cost DOUBLE PRECISION,
21-
reverse_cost DOUBLE PRECISION
17+
id SERIAL PRIMARY KEY,
18+
source INTEGER,
19+
target INTEGER,
20+
cost DOUBLE PRECISION,
21+
reverse_cost DOUBLE PRECISION
2222
);
2323
CREATE TABLE
2424
/* -- q3 */
@@ -46,7 +46,7 @@ INSERT INTO my_edges1 (source, target, cost, reverse_cost) VALUES
4646
(6, 3, 1, 1),
4747
(3, 6, 1, 1),
4848
(1, 3, 1, 1),
49-
(3, 1, 1, 1);
49+
(3, 1, 1, 1);
5050
INSERT 0 24
5151
/* -- q4 */
5252
SELECT * FROM pgr_bandwidth(
@@ -59,11 +59,11 @@ SELECT * FROM pgr_bandwidth(
5959

6060
/* -- q5 */
6161
CREATE TABLE my_edges2 (
62-
id SERIAL PRIMARY KEY,
63-
source INTEGER,
64-
target INTEGER,
65-
cost DOUBLE PRECISION,
66-
reverse_cost DOUBLE PRECISION
62+
id SERIAL PRIMARY KEY,
63+
source INTEGER,
64+
target INTEGER,
65+
cost DOUBLE PRECISION,
66+
reverse_cost DOUBLE PRECISION
6767
);
6868
CREATE TABLE
6969
/* -- q6 */

0 commit comments

Comments
 (0)