Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix typos #449

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[docs] Fix typos
  • Loading branch information
NikitaZotov committed Dec 17, 2024
commit e425d94a1c5923a61710535951b6ca6e196b3cb1
4 changes: 2 additions & 2 deletions docs/sc-memory/api/cpp/extended/agents/waiters.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To generate object of this class, you should call `CreateEventWaiter` method fro

```cpp
...
// Generate of find some sc-node and generate waiter to wait until
// Generate or find some sc-node and generate waiter to wait until
// a sc-connector of the specified type is generated from or to this sc-node.
auto waiter = context.CreateEventWaiter<
ScEventAfterGenerateConnector<ScType::ConstPermPosArc>>(
Expand Down Expand Up @@ -94,7 +94,7 @@ This class represents waiter for condition to occur. To generate object of this

```cpp
...
// Generate of find some sc-node and generate waiter to wait until
// Generate or find some sc-node and generate waiter to wait until
// a sc-connector of the specified type is generated from or to this sc-node.
auto waiter = context.GenerateConditionWaiter<
ScEventAfterGenerateConnector<ScType::ConstPermPosArc>>(
Expand Down
2 changes: 1 addition & 1 deletion docs/sc-memory/api/cpp/extended/template_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ main rules:
* Set alias of this sc-element in a first occurrence of this sc-element in sc-template triples. You need to use `>>` operator to
do this (see code below, last sc-element of first triple).
* When you need to use aliased sc-element in next triples, then just use it alias instead of `ScType` or `ScAddr` (see code
below, first sc-element if second triple).
below, first sc-element of second triple).

There is the example code with naming.

Expand Down
Loading