Skip to content

Commit bf40f33

Browse files
authored
An user -> a user (#206)
1 parent c760ecc commit bf40f33

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/master-detail-forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Then, they can insert data in the detail forms to update information from the ch
1616
This example application contains a main form to create users,
1717
and a second form to create their addresses.
1818

19-
Once an user has been added, multiple addresses can be added to it.
19+
Once a user has been added, multiple addresses can be added to it.
2020

2121
See https://github.com/lovasoa/SQLpage/discussions/16 for more details.
2222

examples/mysql json handling/index.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ insert into groups(name) select :Name where :Name is not null;
66
select 'list' as component, 'Groups' as title, 'No group yet' as empty_title;
77
select name as title from groups;
88

9-
select 'form' as component, 'Add an user' as title, 'Add' as validate;
9+
select 'form' as component, 'Add a user' as title, 'Add' as validate;
1010
select 'UserName' as name, 'Name' as label;
1111
select
1212
'Memberships[]' as name,

examples/official-site/sqlpage/migrations/09_redirect.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ INSERT INTO example (component, description)
3434
VALUES (
3535
'redirect',
3636
'
37-
Redirect an user to the login page if they are not logged in:
37+
Redirect a user to the login page if they are not logged in:
3838
3939
```sql
4040
SELECT ''redirect'' AS component, ''login.sql'' AS link

examples/read-and-set-http-cookies/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
This is a very simple example of a website that uses the SQLPage web application framework. It uses a Postgres database for storing the data.
44

5-
It lets an user log in and out, and it shows a list of the users that have logged in.
5+
It lets a user log in and out, and it shows a list of the users that have logged in.

examples/simple-website-example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ It has the following bsic features:
77

88
- Displays a list of user names using the [list component](https://sql.ophir.dev/documentation.sql?component=list#component) (in [`index.sql`](./index.sql#L14-L20))
99
- Add a new user name to the list through a [form](https://sql.ophir.dev/documentation.sql?component=form#component) (in [`index.sql`](./index.sql#L1-L9))
10-
- View an user's personal page by clicking on a name in the list (in [`user.sql`](./user.sql))
11-
- Delete an user from the list by clicking on the delete button in the user's personal page (in [`delete.sql`](./delete.sql))
10+
- View a user's personal page by clicking on a name in the list (in [`user.sql`](./user.sql))
11+
- Delete a user from the list by clicking on the delete button in the user's personal page (in [`delete.sql`](./delete.sql))
1212

1313
## Running the example
1414

examples/simple-website-example/user.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SELECT 'text' as component,
22
username as title,
3-
username || ' is an user on this site.
3+
username || ' is a user on this site.
44
55
[Delete this user](delete.sql?id=' || id || ')
66

0 commit comments

Comments
 (0)