Skip to content

Commit a9b3061

Browse files
committed
Minor updates
1 parent ce54ec8 commit a9b3061

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/ADR/general/NoBuiltInAssertionFeature.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## Context
44

5-
In our mocking framework, there is a consideration to include a built-in assertion feature. However, there are numerous assertion frameworks available, each with its own strengths and user base. Including a built-in assertion feature may lead to redundancy and limit the flexibility for users to choose their preferred assertion framework.
5+
In our mocking framework, there is a consideration to include a built-in assertion feature. However, there are numerous assertion frameworks available, each with its own strengths and user base.
6+
Including a built-in assertion feature may lead to redundancy and limit the flexibility for users to choose their preferred assertion framework.
67

78
## Decision
89

docs/ADR/general/NoDependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In our project, there is a consideration to include dependencies on shared libra
66

77
## Decision
88

9-
We will not include any dependencies on shared libraries in our project. Instead, we will aim to implement necessary functionality within the project itself or use static linking where appropriate.
9+
We will not include any dependencies on shared libraries in our project. Instead, we will aim to implement necessary functionality within the project itself using source generation.
1010

1111
## Consequences
1212

docs/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MiniMock
22

3-
MiniMock offers a _minimalistic_ approach to mocking in .NET with a focus on simplicity and ease of use.
3+
MiniMock offers a **minimalistic** approach to mocking in .NET with a focus on simplicity and ease of use.
44

55
```csharp
66
public interface IBookRepository
@@ -34,6 +34,5 @@ Try it out or continue with [Getting started](guide/getting-started.md) to learn
3434

3535
For more details on specific aspects you can read about [Construction](guide/construction.md), [Methods](guide/methods.md), [Properties](guide/properties.md), [Events](guide/events.md) or
3636
[Indexers](guide/indexers.md).
37-
Or you shift into high gear with [Advanced Features](advanced-features.md), [FaQ](faq.md) or [Troubleshooting](troubleshooting.md).
3837

39-
If you are more into the ins and outs of MiniMock you can read the [Motivation](motivation.md) behind MiniMock or the [ADRs](ADR/README.md).
38+
If you are more into the ins and outs of MiniMock you can read the [ADRs](ADR/README.md).

0 commit comments

Comments
 (0)