Skip to content

Commit

Permalink
Use "built-in" instead of "builtin" in docs file names
Browse files Browse the repository at this point in the history
  • Loading branch information
georg-schwarz committed Apr 12, 2024
1 parent 94509a3 commit fc998d5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion apps/docs/docs/user/core-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ _Blocks_ can be either defined as part of the language, called _built-in_ or def
A _value type_ is the definition of a data type of the processed data.
Some _blocks_ use _value types_ to define logic (like filtering or assessing the data type in a data sink).
We differentiate the following kinds of _value types_:
- _Built-in value types_ come with the basic version of Jayvee. See [built-in value types](./value-types/builtin-value-types).
- _Built-in value types_ come with the basic version of Jayvee. See [built-in value types](./value-types/built-in-value-types).
- _Primitive value types_ can be defined by the user to model domain-specific data types and represent a single value.
_Constraints_ can be added to a _primitive value types_.
See [primitive value types](./value-types/primitive-value-types).
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/docs/user/expressions.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Expressions in Jayvee are arbitrarily nested statements. They consist of:
- variables (e.g., declared by `from` properties in [Transforms](./transforms.md))
- operators (e.g., `*` or `sqrt`)

Expressions get evaluated at runtime by the interpreter to a [built-in _value type_](./value-types/builtin-value-types).
Expressions get evaluated at runtime by the interpreter to a [built-in _value type_](./value-types/built-in-value-types).

### Example

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/docs/user/value-types/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: AGPL-3.0-only

builtin-value-types.md
built-in-value-types.md
2 changes: 1 addition & 1 deletion apps/docs/generator/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function generateValueTypeDocs(
const valueTypeDoc =
userDocBuilder.generateValueTypesDoc(PrimitiveValuetypes);

const fileName = `builtin-value-types.md`;
const fileName = `built-in-value-types.md`;
writeFileSync(join(docsPath, fileName), valueTypeDoc, {
flag: 'w',
});
Expand Down
2 changes: 1 addition & 1 deletion example/electric-vehicles.jv
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pipeline ElectricVehiclesPipeline {
header: true;
columns: [
// 4. Here, a user-deifned value type is used to describe this column.
// The capital letter indicates that the value type is not builtin
// The capital letter indicates that the value type is not built-in
// by convention. The value type itself is defined further below.
"VIN (1-10)" oftype VehicleIdentificationNumber10,
"County" oftype text,
Expand Down
2 changes: 1 addition & 1 deletion libs/interpreter-lib/src/std-extension.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function loadAllBuiltinBlocktypes(): Promise<BlockTypeWrapper[]> {
}

describe('std extension', () => {
it('should provide matching block executors for builtin block types', async () => {
it('should provide matching block executors for built-in block types', async () => {
(await loadAllBuiltinBlocktypes()).forEach(
(blockType: BlockTypeWrapper) => {
const execExtension = new StdExecExtension();
Expand Down

0 comments on commit fc998d5

Please sign in to comment.