From 374997b599a3bfa8b94636e3b55b0dc21eb7baf4 Mon Sep 17 00:00:00 2001 From: lucsansag Date: Fri, 24 May 2024 13:50:26 +0200 Subject: [PATCH] Board: fix typo (#965) --- doc/json_schema.json | 2 +- src/modules/board/board.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/json_schema.json b/doc/json_schema.json index 1a953fa95..410deb444 100644 --- a/doc/json_schema.json +++ b/doc/json_schema.json @@ -778,7 +778,7 @@ }, { "const": "board", - "description": "Print mather board name and other info" + "description": "Print motherboard name and other info" }, { "const": "bootmgr", diff --git a/src/modules/board/board.c b/src/modules/board/board.c index 4cbc21840..79c59950c 100644 --- a/src/modules/board/board.c +++ b/src/modules/board/board.c @@ -137,7 +137,7 @@ void ffInitBoardOptions(FFBoardOptions* options) ffOptionInitModuleBaseInfo( &options->moduleInfo, FF_BOARD_MODULE_NAME, - "Print mather board name and other info", + "Print motherboard name and other info", ffParseBoardCommandOptions, ffParseBoardJsonObject, ffPrintBoard,