Skip to content

Commit 47c1a7b

Browse files
committed
Copy-editing fixes
1 parent d5cb4d9 commit 47c1a7b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

templates/home.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ <h1>Are we <em>web</em> yet?</h1>
1515
<p class="tagline"><strong>Yes! And it's freaking fast!</strong></p>
1616

1717
<p>
18-
Rust has mature and production ready frameworks in <a href="/topics/frameworks/#pkg-actix-web">Actix Web</a> and
18+
Rust has mature and production-ready frameworks in <a href="/topics/frameworks/#pkg-actix-web">Actix Web</a> and
1919
<a href="/topics/frameworks/#pkg-axum">Axum</a>, and innovative ones like <a href="/topics/frameworks/#pkg-warp">Warp</a>
2020
and <a href="/topics/frameworks/#pkg-tide">Tide</a>. These provide everything you’d expect from a web framework, from routing
21-
and middleware, to templating, and JSON/form handling. There are crates for everything, and more! For databases, there’s:</p>
21+
and middleware to templating and JSON/form handling. There are crates for everything, and more. For databases, there’s:</p>
2222

2323
<ul>
2424
<li>
2525
<a href="/topics/database/#pkg-diesel">Diesel</a>, a full-fledged ORM.
2626
</li>
2727
<li>
28-
<a href="/topics/database/#pkg-sqlx">sqlx</a>, the async sql toolkit.
28+
<a href="/topics/database/#pkg-sqlx">sqlx</a>, the async SQL toolkit.
2929
</li>
3030
<li>
3131
As well as native drivers for <a href="/topics/database/#pkg-mongodb">MongoDB</a>, <a
@@ -67,7 +67,7 @@ <h2>Can I replace my Rails/Django/Laravel app already?</h2>
6767

6868
<p>
6969
Rust does not have a dominant framework at the level of Django or Rails. Most Rust frameworks are smaller and modular, similar to Flask or Sinatra.
70-
Rust does have a diverse package ecosystem, but you generally have to wire everything up yourself. Expect to put in a little bit of extra set up work
70+
Rust does have a diverse package ecosystem, but you generally have to wire everything up yourself. Expect to put in a little bit of extra setup work
7171
to get started. If you are expecting everything bundled up for you, then Rust might not be for you just yet.
7272
</p>
7373

@@ -76,8 +76,8 @@ <h2>Can I replace my Rails/Django/Laravel app already?</h2>
7676
<h2>WebAssembly???</h2>
7777

7878
<p>Rust can run on the browser by compiling to <a href="/topics/webassembly/">WebAssembly</a>
79-
{{ level::level(level=webassembly.extra.level) }}. This means that you can take advantage of the amazing Rust ecosystem on the browser! Rust and
80-
WebAssembly integrate with existing Javascript tooling like NPM, Webpack, and ECMAScript modules! There are
79+
{{ level::level(level=webassembly.extra.level) }}. This means that you can take advantage of the amazing Rust ecosystem in the browser. Rust and
80+
WebAssembly integrate with existing Javascript tooling like NPM, Webpack, and ECMAScript modules. There are
8181
some <a href="/topics/webassembly/">awesome Rust and WebAssembly</a> projects out there. For example, <a
8282
href="https://github.com/yewstack/yew">Yew</a> and <a href="https://github.com/seed-rs/seed">Seed</a> let you create
8383
front-end web apps with Rust in a way that feels almost like React.js.</p>

0 commit comments

Comments
 (0)