diff --git a/docs/docs/usage/configuration.md b/docs/docs/usage/configuration.md index e3797b904c..ce591440a4 100644 --- a/docs/docs/usage/configuration.md +++ b/docs/docs/usage/configuration.md @@ -19,7 +19,7 @@ const streamr = new Streamr({ ``` ## The Streamr Node config file -The config file, typically located at `.streamr/config/default.json` or `~/.streamrDocker/config/default.json`, as the name indicates, contains the configuration of the Streamr node. The main part of this config is the [`client`](https://github.com/streamr-dev/network/blob/main/packages/client/src/Config.ts) section. The reamining configuration options of the Streamr node (Broker) config can be discovered from the [broker config schema](https://github.com/streamr-dev/network/blob/main/packages/broker/src/config/config.schema.json). For example, Node plugins are configured here. +The config file, typically located at `.streamr/config/default.json` or `~/.streamrDocker/config/default.json`, as the name indicates, contains the configuration of the Streamr node. The main part of this config is the [`client`](https://github.com/streamr-dev/network/blob/main/packages/client/src/Config.ts) section. The remaining configuration options of the Streamr node (Broker) config can be discovered from the [broker config schema](https://github.com/streamr-dev/network/blob/main/packages/broker/src/config/config.schema.json). For example, Node plugins are configured here. ## The Streamr config package Not to be confused with the internal Streamr package configurations such as the client and broker, the Network configuration contains mainly "Network level" parameters that are sometimes useful to read from, depending on your use case. The Streamr Network and Streamr apps reference an NPM package containing the [Streamr config package](https://www.npmjs.com/package/@streamr/config). The config package helps resolve the network level configuration that contains contract addresses, entry point addresses, etc: diff --git a/docs/docs/usage/streams/what-are-streams.md b/docs/docs/usage/streams/what-are-streams.md index b86b2d46e6..fd30dc2724 100644 --- a/docs/docs/usage/streams/what-are-streams.md +++ b/docs/docs/usage/streams/what-are-streams.md @@ -22,7 +22,7 @@ Let's say you have a temperature measurement device that publishes the temperatu | 2019-08-01 11:30:04.122 | 312.64 | | 2019-08-01 11:30:05.882 | 312.32 | -Your stream would grow over time and you can add more colums/data fields to your timestamp. +Your stream would grow over time and you can add more columns/data fields to your timestamp. :::tip Good to know: [Learn more about pub/sub networking](../../help/pub-sub.md)