Skip to content

Commit 6aaac1d

Browse files
authored
Merge pull request #100 from linksplatform/issue-99-0e526c7c
Update website and documentation terminology: 'entities' → 'references to links'
2 parents a9c1472 + 6d49cfd commit 6aaac1d

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ links notation the most easy an natural/intuitive/native one.
8787
## What is Links Notation?
8888

8989
Links Notation (Lino) is a simple, intuitive format for representing
90-
structured data as links between entities. It's designed to be:
90+
structured data as links between ~~entities~~ references to links.
91+
It's designed to be:
9192

9293
- **Natural**: Most text can already be parsed as links notation
9394
- **Flexible**: Supports any number of references in each link

README.ru.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ let links = parse_lino("папа (любитМаму: любит маму)").unw
8888
## Что такое Нотация Связей?
8989

9090
Нотация Связей (Lino) - это простой, интуитивный формат для
91-
представления структурированных данных в виде связей между сущностями.
92-
Он разработан для того, чтобы быть:
91+
представления структурированных данных в виде связей между
92+
~~сущностями~~ ссылками на связи. Он разработан для того, чтобы быть:
9393

9494
- **Естественным**: Большинство текстов уже может быть распарсено как нотация связей
9595
- **Гибким**: Поддерживает любое количество ссылок в каждой связи

csharp/Platform.Protocols.Lino/Link.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Platform.Protocols.Lino
99
{
1010
/// <summary>
1111
/// Represents a link in the Lino protocol with an optional identifier and nested values.
12-
/// Links can represent simple references, complex nested structures, or relationships between entities.
12+
/// Links can represent simple references, complex nested structures, or relationships between references to links.
1313
/// </summary>
1414
/// <typeparam name="TLinkAddress">The type used for link addresses/identifiers. This can be any type that uniquely identifies a link, such as string, int, or Guid.</typeparam>
1515
public struct Link<TLinkAddress> : IEquatable<Link<TLinkAddress>>

docs/dist/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Links Notation (Lino) - Natural Data Format</title>
7-
<meta name="description" content="Links Notation (Lino) - A natural, intuitive format for representing structured data as links between entities.">
7+
<meta name="description" content="Links Notation (Lino) - A natural, intuitive format for representing structured data as links between ~~entities~~ references to links.">
88
<link rel="icon" type="image/x-icon" href="/Protocols.Lino/favicon.ico">
99
<script type="module" crossorigin src="/Protocols.Lino/assets/index-CRC63BdC.js"></script>
1010
<link rel="stylesheet" crossorigin href="/Protocols.Lino/assets/index-C0VRO9gB.css">
@@ -27,7 +27,7 @@ <h1>Links Notation</h1>
2727

2828
<div class="hero-content">
2929
<h1 class="hero-title">Links Notation</h1>
30-
<p class="hero-subtitle">A natural, intuitive format for representing structured data as links between entities</p>
30+
<p class="hero-subtitle">A natural, intuitive format for representing structured data as links between <s>entities</s> references to links</p>
3131
<div class="hero-example">
3232
<code>papa (lovesMama: loves mama)</code>
3333
</div>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Links Notation (Lino) - Natural Data Format</title>
7-
<meta name="description" content="Links Notation (Lino) - A natural, intuitive format for representing structured data as links between entities.">
7+
<meta name="description" content="Links Notation (Lino) - A natural, intuitive format for representing structured data as links between ~~entities~~ references to links.">
88
<link rel="icon" type="image/x-icon" href="/Protocols.Lino/favicon.ico">
99
<link rel="stylesheet" href="style.css">
1010
</head>
@@ -26,7 +26,7 @@ <h1>Links Notation</h1>
2626

2727
<div class="hero-content">
2828
<h1 class="hero-title">Links Notation</h1>
29-
<p class="hero-subtitle">A natural, intuitive format for representing structured data as links between entities</p>
29+
<p class="hero-subtitle">A natural, intuitive format for representing structured data as links between <s>entities</s> references to links</p>
3030
<div class="hero-example">
3131
<code>papa (lovesMama: loves mama)</code>
3232
</div>

0 commit comments

Comments
 (0)