Skip to content

Commit

Permalink
Fix typos in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kerristrasz authored Aug 6, 2024
1 parent a2567c5 commit e6b4dca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use std::collections::BTreeMap;
use std::hash::Hash;
use serde::Serialize;

#[derive(Copy, Clone, PartialOrd, Ord, PartialEq, Eq, Hash, Serialize)]
#[derive(Serialize)]
struct AppId(u32);

#[derive(Serialize)]
Expand All @@ -45,13 +45,13 @@ struct AppBuild {
desc: String,
content_root: String,
build_output: String,
depots: BTreeMap<AppId, Depot>
depots: BTreeMap<AppId, Depot>,
}

#[derive(Serialize)]
struct Depot {
#[serde(rename = "FileMapping")]
file_mappings: Vec<FileMapping>
file_mappings: Vec<FileMapping>,
}

#[derive(Serialize)]
Expand Down Expand Up @@ -86,8 +86,8 @@ fn main() -> vdflex::Result<()> {
// "AppID" "1234"
// "BuildOutput" "..\build\"
// "ContentRoot" "..\assets\"
// "Depots"
// "Desc" "My SteamPipe build script"
// "Depots"
// {
// "1234"
// {
Expand Down

0 comments on commit e6b4dca

Please sign in to comment.