Skip to content

Commit c500b9f

Browse files
siwatanejoFractalFir
authored andcommitted
README.md: fix some typos
1 parent c651ed8 commit c500b9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> [!WARNING]
44
> This project is still early in its developement. Bugs, crashes and miscompilations are expected. DO NOT USE IT FOR ANYTHING SERIOUS.
55
6-
`rustc_codegen_clr` is an experimental Rust compiler backend(plugin), which allows you to transpile Rust into .NET assebmlies, or C source files.
6+
`rustc_codegen_clr` is an experimental Rust compiler backend(plugin), which allows you to transpile Rust into .NET assemblies, or C source files.
77

88
The end goal of the project is allowing Rust to be used in places where it could not be used before.
99

@@ -14,7 +14,7 @@ The project aims to provide a way to easily use Rust libraries in .NET. It comes
1414
```
1515
use mychorizza::*;
1616
fn main(){
17-
// Alocate a new GC-managed string builder
17+
// Allocate a new GC-managed string builder
1818
let stringBuilder = StringBuilder::empty();
1919
// You can easily operate on GC-managed types
2020
mstring.AppendChar('H');
@@ -49,11 +49,11 @@ My representation of .NETs IR maps nicely to C, which means that I was able to a
4949
present in the very last stage of compilation.
5050

5151
This means that, instead of having to maintain 2 separate projects, I can maintain one project. Bug fixes to the .NET side of things also fix C bugs.
52-
Because of that, the support for C in the project is almost as good as support for .NET
52+
Because of that, the support for C in the project is almost as good as support for .NET.
5353

5454
## Current state of the project
5555

56-
The project currently supports most Rust features (except proc macros), but it is not bug-free. It can compile a mostly working version of Rust std, but there are many minor bugs make such `std` not 100% functional.
56+
The project currently supports most Rust features (except proc macros), but it is not bug-free. It can compile a mostly working version of Rust std, but there are many minor bugs that make such `std` not 100% functional.
5757

5858
Most components of `std` are about 95% working in .NET, and 80% working in C.
5959
So, you *can* compile a lot of existing Rust code, but it may not necessarily *work*.

0 commit comments

Comments
 (0)