From 3e825198959d143ece38a7992fa974db67aa6994 Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Mon, 15 Sep 2003 17:26:30 +0000 Subject: [PATCH] 2003-09-15 Marcel Telka * cmd/help.c (cmd_help_run): Fixed spelling (patch 805108, Andreas Mohr). * flash/detectflash.c (detectflash): Ditto. git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@567 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- libbrux/ChangeLog | 5 +++++ libbrux/NEWS | 1 + libbrux/THANKS | 1 + libbrux/cmd/help.c | 4 ++-- libbrux/flash/detectflash.c | 4 ++-- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/libbrux/ChangeLog b/libbrux/ChangeLog index 669c46ea..ba0fa7fd 100644 --- a/libbrux/ChangeLog +++ b/libbrux/ChangeLog @@ -1,3 +1,8 @@ +2003-09-15 Marcel Telka + + * cmd/help.c (cmd_help_run): Fixed spelling (patch 805108, Andreas Mohr). + * flash/detectflash.c (detectflash): Ditto. + 2003-08-28 Marcel Telka * flash/cfi.c (cfi_detect): Replaced bus_width macro with new bus_area. diff --git a/libbrux/NEWS b/libbrux/NEWS index 443543b2..e4a41153 100644 --- a/libbrux/NEWS +++ b/libbrux/NEWS @@ -1,5 +1,6 @@ $Id$ +2003-09-15: Fixed spelling (patch 805108, Andreas Mohr). 2003-08-13: Added support for Intel SCS command set (patch 787978, Jani Monoses). 2003-08-11: Added support for 1 x 8 bit AMD Flash (patch 772499, Matan Ziv-Av). 2003-06-18: Added support for 1 x 8 bit Intel Flash (patch 753295, Matan Ziv-Av). diff --git a/libbrux/THANKS b/libbrux/THANKS index 60c987a8..a73f87c4 100644 --- a/libbrux/THANKS +++ b/libbrux/THANKS @@ -1,4 +1,5 @@ $Id$ +Andreas Mohr Jani Monoses Matan Ziv-Av diff --git a/libbrux/cmd/help.c b/libbrux/cmd/help.c index 49841710..02b0ad2f 100644 --- a/libbrux/cmd/help.c +++ b/libbrux/cmd/help.c @@ -39,14 +39,14 @@ cmd_help_run( char *params[] ) printf( _("Command list:\n\n") ); for (i = 0; cmds[i]; i++) printf( _("%-13s %s\n"), cmds[i]->name, cmds[i]->desc ? _(cmds[i]->desc) : _("(no description available)") ); - printf( _("\nType \"help COMMAND\" for details about particular command.\n") ); + printf( _("\nType \"help COMMAND\" for details about a particular command.\n") ); return 1; } if (params[2]) return -1; - /* search and print help for particular command */ + /* search and print help for a particular command */ for (i = 0; cmds[i]; i++) if (strcmp( cmds[i]->name, params[1] ) == 0) { if (cmds[i]->help) diff --git a/libbrux/flash/detectflash.c b/libbrux/flash/detectflash.c index 5c325db2..5265191f 100644 --- a/libbrux/flash/detectflash.c +++ b/libbrux/flash/detectflash.c @@ -75,7 +75,7 @@ detectflash( bus_t *bus ) s = N_("Intel/Sharp Extended Command Set"); break; case CFI_VENDOR_AMD_SCS: - s = N_("AMD/Fujitsu Standard Commanf Set"); + s = N_("AMD/Fujitsu Standard Command Set"); break; case CFI_VENDOR_INTEL_SCS: s = N_("Intel Standard Command Set"); @@ -105,7 +105,7 @@ detectflash( bus_t *bus ) s = N_("Intel/Sharp Extended Command Set"); break; case CFI_VENDOR_AMD_SCS: - s = N_("AMD/Fujitsu Standard Commanf Set"); + s = N_("AMD/Fujitsu Standard Command Set"); break; case CFI_VENDOR_INTEL_SCS: s = N_("Intel Standard Command Set");