Skip to content

Commit 8734432

Browse files
committed
fix language
1 parent 856545e commit 8734432

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resolver = "2"
1313

1414
[workspace.package]
1515
authors = ["ModelFox <[email protected]>"]
16-
description = "ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models."
16+
description = "ModelFox makes it easy to train, deploy, and monitor machine learning models."
1717
documentation = "https://docs.rs/modelfox"
1818
edition = "2021"
1919
homepage = "https://modelfox.dev"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Train a model from a CSV file on the command line. Make predictions from Elixir,
5252

5353
[Website](https://www.modelfox.dev) | [Docs](https://www.modelfox.dev/docs/) | [Discord](https://discord.gg/jT9ZGp3TK2)
5454

55-
ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.
55+
ModelFox makes it easy to train, deploy, and monitor machine learning models.
5656

5757
- Run `modelfox train` to train a model from a CSV file on the command line.
5858
- Make predictions with libraries for [Elixir](https://hex.pm/packages/modelfox), [Go](https://pkg.go.dev/github.com/modelfoxdotdev/modelfox-go), [JavaScript](https://www.npmjs.com/package/@modelfoxdotdev/modelfox), [PHP](https://packagist.org/packages/modelfox/modelfox), [Python](https://pypi.org/project/modelfox), [Ruby](https://rubygems.org/gems/modelfox), and [Rust](https://lib.rs/crates/modelfox).

crates/app/layouts/document.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl Component for Document {
3131
)
3232
.child(
3333
meta()
34-
.attribute("content", "ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.")
34+
.attribute("content", "ModelFox makes it easy to train, deploy, and monitor machine learning models.")
3535
.attribute("name", "description"),
3636
);
3737
let timezone_script = script().child(

crates/build/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ fn build_debs(version: &str) {
166166
Version: {version}
167167
Maintainer: ModelFox <[email protected]>
168168
Homepage: https://www.modelfox.dev
169-
Description: ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.
169+
Description: ModelFox makes it easy to train, deploy, and monitor machine learning models.
170170
"#,
171171
architecture = architecture,
172172
version = version,
@@ -216,7 +216,7 @@ fn build_rpms(version: &str) {
216216
Name: modelfox
217217
Version: {version}
218218
Release: 1
219-
Summary: ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.
219+
Summary: ModelFox makes it easy to train, deploy, and monitor machine learning models.
220220
License: MIT
221221
Source0: modelfox.tar.gz
222222
@@ -411,7 +411,7 @@ fn alpine(
411411
pkgname=modelfox
412412
pkgver={version}
413413
pkgrel=1
414-
pkgdesc="ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models."
414+
pkgdesc="ModelFox makes it easy to train, deploy, and monitor machine learning models."
415415
url="https://www.modelfox.dev"
416416
arch={arch}
417417
license="MIT"
@@ -569,7 +569,7 @@ fn deb(
569569
SHA1: {sha1}
570570
SHA256: {sha256}
571571
Homepage: https://www.modelfox.dev
572-
Description: ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.
572+
Description: ModelFox makes it easy to train, deploy, and monitor machine learning models.
573573
"#,
574574
deb_version = deb_version,
575575
arch = arch,

crates/ui/code.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
display: none;
1010
}
1111

12-
.code {
12+
.abc123 {
1313
border-radius: var(--border-radius);
1414
color: var(--text-color);
1515
display: grid;

crates/www/layouts/document.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl Component for Document {
3131
)
3232
.child(
3333
meta()
34-
.attribute("content", "ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.")
34+
.attribute("content", "ModelFox makes it easy to train, deploy, and monitor machine learning models.")
3535
.attribute("name", "description"),
3636
)
3737
.child(

crates/www/routes/blog/_/index/server/page.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl Component for Page {
3030
let about_modelfox = div().child(
3131
ui::Card::new().child(
3232
ui::Markdown::new(
33-
"ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models. With ModelFox, developers can train models and make predictions on the command line or with libraries for languages including [Elixir](https://hex.pm/packages/modelfox), [Golang](https://pkg.go.dev/github.com/modelfoxdotdev/modelfox-go), [Javascript](https://www.npmjs.com/package/@modelfoxdotdev/modelfox), [PHP](https://packagist.org/packages/modelfox/modelfox), [Python](https://pypi.org/project/modelfox), [Ruby](https://rubygems.org/gems/modelfox), and [Rust](https://lib.rs/modelfox), and learn about their models and monitor them in production from a web application. Watch the demo on the [homepage](https://www.modelfox.dev)."))
33+
"ModelFox makes it easy to train, deploy, and monitor machine learning models. With ModelFox, developers can train models and make predictions on the command line or with libraries for languages including [Elixir](https://hex.pm/packages/modelfox), [Golang](https://pkg.go.dev/github.com/modelfoxdotdev/modelfox-go), [Javascript](https://www.npmjs.com/package/@modelfoxdotdev/modelfox), [PHP](https://packagist.org/packages/modelfox/modelfox), [Python](https://pypi.org/project/modelfox), [Ruby](https://rubygems.org/gems/modelfox), and [Rust](https://lib.rs/modelfox), and learn about their models and monitor them in production from a web application. Watch the demo on the [homepage](https://www.modelfox.dev)."))
3434
);
3535
Document::new()
3636
.child(

crates/www/routes/docs/index/server/page.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub struct Page;
1010
impl Component for Page {
1111
fn into_node(self) -> Node {
1212
let p1 = ui::P::new().child("Welcome to the documentation for ModelFox!");
13-
let p2 = ui::P::new().child("ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models. With ModelFox, you:");
13+
let p2 = ui::P::new().child("ModelFox makes it easy to train, deploy, and monitor machine learning models. With ModelFox, you:");
1414
let list = ui::UnorderedList::new()
1515
.child(ui::ListItem::new().child("Train a model from a CSV file on the command line."))
1616
.child(

languages/elixir/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule ModelFox.MixProject do
2121
name: "modelfox",
2222
package: [
2323
description:
24-
"ModelFox makes it easy for programmers to train, deploy, and monitor machine learning models.",
24+
"ModelFox makes it easy to train, deploy, and monitor machine learning models.",
2525
licenses: ["MIT"],
2626
links: %{homepage: "https://www.modelfox.dev"}
2727
],

0 commit comments

Comments
 (0)