Skip to content

Commit

Permalink
Merge pull request #449 from NikitaZotov/fix/typos_in_docs
Browse files Browse the repository at this point in the history
[docs] Fix typos
  • Loading branch information
NikitaZotov authored Dec 17, 2024
2 parents 663c5c6 + e425d94 commit 188c5dc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 188c5dc

Please sign in to comment.