diff --git a/src/my_first_app/chapter_1.md b/src/my_first_app/chapter_1.md index b650128f..aa60c844 100644 --- a/src/my_first_app/chapter_1.md +++ b/src/my_first_app/chapter_1.md @@ -172,13 +172,13 @@ Here, the `publisher` is some default value, but for a real package, this field The `publisher` can also be set with a `kit new --publisher` flag. The rest of these fields are not required for development, but become important when publishing a package with the [`app_store`](https://github.com/kinode-dao/kinode/tree/main/kinode/packages/app_store). -As an aside: each process has a unique `processID`, used to address messages to that process, that looks like +As an aside: each process has a unique `processId`, used to address messages to that process, that looks like ``` :: ``` -You can read more about `processID`s [here](../process/processes.md#overview). +You can read more about `processId`s [here](../process/processes.md#overview). ## Building the Package diff --git a/src/my_first_app/chapter_3.md b/src/my_first_app/chapter_3.md index 74604a24..d199fabe 100644 --- a/src/my_first_app/chapter_3.md +++ b/src/my_first_app/chapter_3.md @@ -1,4 +1,4 @@ -# Messaging with Larger Data Types +# Messaging with More Complex Data Types In this section, you will upgrade your app so that it can handle messages with more elaborate data types such as `enum`s and `struct`s. Additionally, you will learn how to handle processes completing or crashing.