Skip to content

Commit

Permalink
trying to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stefjoosten committed Dec 11, 2023
1 parent 86e4abb commit ebea74d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/Examples.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Examples
title: examples
id: examples
description: Examples of Ampersand programs and fragments
---
Expand Down
2 changes: 1 addition & 1 deletion docs/landingpage/2-student.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ You can learn about the language Ampersand, and learn how to make a prototype of
- Do the [tutorial](../tutorial-rap4), to get an idea of an Ampersand application
- Learn about the [syntax of Ampersand](../reference-material/syntax-of-ampersand), to write correct Ampersand code.
- Learn about [relation algebra](https://en.wikipedia.org/wiki/Relational_algebra) on Wikipedia, to understand more about this fascinating field of mathematics.
- Find [examples](../examples.md) of Ampersand specifications, to get started making your own.
- Find [examples](../examples) of Ampersand specifications, to get started making your own.
- Find [exercises](../exercises.md) that help you improve your skills in specifying information systems.
2 changes: 1 addition & 1 deletion docs/landingpage/3-ampersand-user.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This page will help you build a working prototype of your information system and
## Get started

- Do the [tutorial](../tutorial-rap4), to get an idea of an Ampersand application
- Find [examples](../examples.md) of Ampersand specifications, to get started making your own.
- Find [examples](../examples) of Ampersand specifications, to get started making your own.
- Understand the [architecture of an Ampersand application](../reference-material/architecture-of-an-ampersand-application), so you can build, deploy, and maintain your Ampersand application better.
- Learn about the [syntax of Ampersand](../reference-material/syntax-of-ampersand), to write correct Ampersand code.
- Learn about [relation algebra](https://en.wikipedia.org/wiki/Relational_algebra) on Wikipedia, to understand more about this fascinating field of mathematics.
Expand Down
4 changes: 2 additions & 2 deletions docs/reference-material/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,5 +276,5 @@ When running an application in your browser, you are watching one user interface

The next sections contain two examples:

- a [client interface](../examples.md#interfaces-example-client) to allow clients of a web shop to change their name and address and show them status information of their orders;
- a [login interface](../examples.md#interfaces-example-login) to demonstrate how to get different interface structures under varying conditions.
- a [client interface](../examples#interfaces-example-client) to allow clients of a web shop to change their name and address and show them status information of their orders;
- a [login interface](../examples#interfaces-example-login) to demonstrate how to get different interface structures under varying conditions.
6 changes: 3 additions & 3 deletions docs/reference-material/syntax-of-ampersand.md
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ Interfaces are meant to expose functionality and data from a [context](#the-cont

#### Description

An interface is a component of an information system that exposes functionality and data from a [context](#the-context-statement), to let users or information systems interact by creating, reading, updating, and deleting data. The first [example](../examples.md#example-interface-structure) introduces a simple interface informally. Another [example](../examples.md#interface-introductory-example) introduces the main features of an interface with nested interfaces.
An interface is a component of an information system that exposes functionality and data from a [context](#the-context-statement), to let users or information systems interact by creating, reading, updating, and deleting data. The first [example](../examples#example-interface-structure) introduces a simple interface informally. Another [example](../examples#interface-introductory-example) introduces the main features of an interface with nested interfaces.

A _interface_ is a component of an information system. During the time that this interface can actually be used, we say it is _deployed_. We also call this the _lifetime_ of a interface. A typical instance of a interface is a user interface based on HTML-CSS that runs in a browser. But an application program interface \(API\) that serves other computers with web services is a perfectly valid instance as well.

Expand Down Expand Up @@ -859,8 +859,8 @@ When running an application in your browser, you are watching one user interface

Further examples:

- a [client interface](../examples.md#interfaces-example-client) to allow clients of a web shop to change their name and address and show them status information of their orders;
- a [login interface](../examples.md#interfaces-example-login) to demonstrate how to get different interface structures under varying conditions.
- a [client interface](../examples#interfaces-example-client) to allow clients of a web shop to change their name and address and show them status information of their orders;
- a [login interface](../examples#interfaces-example-login) to demonstrate how to get different interface structures under varying conditions.

### CRUD annotations

Expand Down

0 comments on commit ebea74d

Please sign in to comment.