diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index d85277cc10..13304acfa6 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -60,7 +60,7 @@ * [Path expressions](spec/expressions/path.md) * [Literal expressions](spec/expressions/literal.md) * [Arithmetic Operators](spec/expressions/arithmetic_operators.md) - * [Comparision Operators](spec/expressions/comparison_operators.md) + * [Comparison Operators](spec/expressions/comparison_operators.md) * [Boolean Operators](spec/expressions/boolean_operators.md) * [Unary Operators](spec/expressions/unary_operators.md) * [Type System](spec/type_system/index.md) diff --git a/docs/src/release_notes.md b/docs/src/release_notes.md index 1737ef2d59..13492aef31 100644 --- a/docs/src/release_notes.md +++ b/docs/src/release_notes.md @@ -1581,7 +1581,7 @@ This is the first non-alpha release of Fe. Read our [announcement](https://blog. **Implementation details:** - Mostly copied Rust's crate system, but use the the term *ingot* instead of crate. + Mostly copied Rust's crate system, but use the term *ingot* instead of crate. Below is an example of an ingot's file tree, as supported by the current implementation. diff --git a/docs/src/std/precompiles.md b/docs/src/std/precompiles.md index a03e10f97c..975727a305 100644 --- a/docs/src/std/precompiles.md +++ b/docs/src/std/precompiles.md @@ -191,7 +191,7 @@ pub fn ec_add(x1: u256, y1: u256, x2: u256, y2: u256)-> (u256,u256) ### Returns -`ec_add` returns a a tuple of `u256`, `(u256, u256)`. +`ec_add` returns a tuple of `u256`, `(u256, u256)`. ### Example @@ -218,7 +218,7 @@ pub fn ec_mul(x: u256, y: u256, s: u256)-> (u256,u256) ### Returns -`ec_mul` returns a a tuple of `u256`, `(u256, u256)`. +`ec_mul` returns a tuple of `u256`, `(u256, u256)`. ### Example diff --git a/newsfragments/980.feature.md b/newsfragments/980.feature.md index 9bd53d9016..f992fdcdfb 100644 --- a/newsfragments/980.feature.md +++ b/newsfragments/980.feature.md @@ -7,4 +7,4 @@ Example: fpmath = { version = "1.0", source="https://github.com/bilgin-kocak/felang-fixedpoint",rev="0eb57d267f7f174419ee257f97d7e02eb3469712" } ``` -In the example above, the `fpmath` ingot is resolved through git from the respository that is specified in the `source` field. The `rev` field is used to specify the commit hash that the dependency is resolved to and is mandatory to ensure git dependencies are always pinned down to specific commits. +In the example above, the `fpmath` ingot is resolved through git from the repository that is specified in the `source` field. The `rev` field is used to specify the commit hash that the dependency is resolved to and is mandatory to ensure git dependencies are always pinned down to specific commits.