Fix compiling issue broken while cleaning up last commit

This commit is contained in:
Keavon Chambers
2021-03-23 02:19:57 -07:00
parent fb5ce7e388
commit bd11f9c865
3 changed files with 7 additions and 7 deletions

View File

@@ -66,7 +66,7 @@ We are also focusing initial feature development on a destructive SVG vector edi
## Running the code
The project is split clients and core libraries (which use the clients). Currently the only important client is the web frontend (`/client/web`). There's also a CLI client that may be useful for testing. The only core library so far is the Editor Core Library (`/core/editor`). The web client's Vue code lives in `/client/web/vue` and a Rust wrapper for the Editor Core Library (which exposes functions to JavaScript through bindings generated by wasm-bindgen) lives in `/client/web/wasm`.
The project is split clients and core libraries (which use the clients). Currently the only important client is the web frontend (`/client/web`). There's also a CLI client that may be useful for testing. The only core library so far is the Editor Core Library (`/core/editor`). The web client's Vue code lives in `/client/web/src` and a Rust wrapper for the Editor Core Library (which exposes functions to JavaScript through bindings generated by wasm-bindgen) lives in `/client/web/wasm`.
A good starting point for learning about the code structure and architecture is reading the [documentation](docs/index.md).