diff --git a/docker/Dockerfile b/docker/Dockerfile index c50b91a7c871..f3433f56a12c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,11 +2,11 @@ # # - `git_commit` is the hash of the current git commit — used for # versioning information inside the binaries. -# - `build_date` is the date and time of when the docker image was +# - `build_date` is the date and time at which the docker image was # built # - `binaries` is the path to the directory containing the Linera # binaries. Leave unset to build the binaries from scratch. -# - `target` is a Rust target quadruple. Currently known to be +# - `target` is a Rust target triple. Currently known to be # supported are `x86_64-unknown-linux-gnu` and # `aarch64-unknown-linux-gnu`. diff --git a/examples/crowd-funding/README.md b/examples/crowd-funding/README.md index bfe1f01edc46..b44f97abe622 100644 --- a/examples/crowd-funding/README.md +++ b/examples/crowd-funding/README.md @@ -1,11 +1,11 @@ -# Crowd-funding Example Application +# Сrowdfunding Example Application -This example application implements crowd-funding campaigns using fungible tokens in +This example application implements crowdfunding campaigns using fungible tokens in the `fungible` application. This demonstrates how to compose applications together and how to instantiate applications where one chain has a special role. Once an application is built and its bytecode published on a Linera chain, the -published bytecode can be used to create different instances. Each instance or crowd-funding +published bytecode can be used to create different instances. Each instance or crowdfunding represents a different campaign. ## How It Works @@ -13,7 +13,7 @@ represents a different campaign. The chain that created the campaign is called the "campaign chain". It is owned by the creator (and beneficiary) of the campaign. -The goal of a crowd-funding campaign is to let people pledge any number of tokens from +The goal of a crowdfunding campaign is to let people pledge any number of tokens from their own chain(s). If enough tokens are pledged before the campaign expires, the campaign is _successful_ and the creator can receive all the funds, including ones exceeding the funding target. Otherwise, the campaign is _unsuccessful_ and contributors should be refunded.