Skip to content

Commit 78b10ca

Browse files
committed
Fix unknown field author error when building the book
using mdbook in main (v0.5.x) ```log 2025-08-18 19:56:41 [ERROR] (mdbook_core::utils): Error: Invalid configuration file 2025-08-18 19:56:41 [ERROR] (mdbook_core::utils): Caused By: TOML parse error at line 2, column 1 | 2 | author = "The Rust Project Developers" | ^^^^^^ unknown field `author`, expected one of `title`, `authors`, `description`, `src`, `language`, `text-direction` ``` Signed-off-by: Hollow Man <[email protected]>
1 parent 3ff3843 commit 78b10ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[book]
2-
author = "The Rust Project Developers"
2+
authors = ["The Rust Project Developers"]
33
title = "The Rustonomicon"
44
description = "The Dark Arts of Advanced and Unsafe Rust Programming"
55

0 commit comments

Comments
 (0)