[coreboot-gerrit] Change in coreboot[master]: libpayload/curses/{form, menu}: Fix uncountable "information"

Elyes HAOUAS (Code Review) gerrit at coreboot.org
Sun May 27 22:54:04 CEST 2018


Elyes HAOUAS has uploaded this change for review. ( https://review.coreboot.org/26595


Change subject: libpayload/curses/{form,menu}: Fix uncountable "information"
......................................................................

libpayload/curses/{form,menu}: Fix uncountable "information"

Change-Id: I28c79d0262a54b58d353802e0d572e5b8be5fbc5
Signed-off-by: Elyes HAOUAS <ehaouas at noos.fr>
---
M payloads/libpayload/curses/form/fld_info.c
M payloads/libpayload/curses/form/fld_user.c
M payloads/libpayload/curses/form/frm_user.c
M payloads/libpayload/curses/menu/m_global.c
M payloads/libpayload/curses/menu/m_item_use.c
M payloads/libpayload/curses/menu/m_userptr.c
6 files changed, 10 insertions(+), 10 deletions(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/95/26595/1

diff --git a/payloads/libpayload/curses/form/fld_info.c b/payloads/libpayload/curses/form/fld_info.c
index da95e65..cf5d96f 100644
--- a/payloads/libpayload/curses/form/fld_info.c
+++ b/payloads/libpayload/curses/form/fld_info.c
@@ -82,7 +82,7 @@
 |                                           int *drows, int *dcols,
 |                                           int *maxgrow)
 |
-|   Description   :  Retrieve informations about a dynamic fields current
+|   Description   :  Retrieve information about a dynamic fields current
 |                    dynamic parameters.
 |
 |   Return Values :  E_OK           - success
diff --git a/payloads/libpayload/curses/form/fld_user.c b/payloads/libpayload/curses/form/fld_user.c
index 075580b..322148f 100644
--- a/payloads/libpayload/curses/form/fld_user.c
+++ b/payloads/libpayload/curses/form/fld_user.c
@@ -39,7 +39,7 @@
 |   Function      :  int set_field_userptr(FIELD *field, void *usrptr)
 |
 |   Description   :  Set the pointer that is reserved in any field to store
-|                    application relevant informations
+|                    application relevant information
 |
 |   Return Values :  E_OK         - on success
 +--------------------------------------------------------------------------*/
@@ -57,7 +57,7 @@
 |   Function      :  void *field_userptr(const FIELD *field)
 |
 |   Description   :  Return the pointer that is reserved in any field to
-|                    store application relevant informations.
+|                    store application relevant information.
 |
 |   Return Values :  Value of pointer. If no such pointer has been set,
 |                    NULL is returned
diff --git a/payloads/libpayload/curses/form/frm_user.c b/payloads/libpayload/curses/form/frm_user.c
index 5cab224..784206e 100644
--- a/payloads/libpayload/curses/form/frm_user.c
+++ b/payloads/libpayload/curses/form/frm_user.c
@@ -39,7 +39,7 @@
 |   Function      :  int set_form_userptr(FORM *form, void *usrptr)
 |
 |   Description   :  Set the pointer that is reserved in any form to store
-|                    application relevant informations
+|                    application relevant information
 |
 |   Return Values :  E_OK         - on success
 +--------------------------------------------------------------------------*/
@@ -57,7 +57,7 @@
 |   Function      :  void *form_userptr(const FORM *form)
 |
 |   Description   :  Return the pointer that is reserved in any form to
-|                    store application relevant informations.
+|                    store application relevant information.
 |
 |   Return Values :  Value of pointer. If no such pointer has been set,
 |                    NULL is returned
diff --git a/payloads/libpayload/curses/menu/m_global.c b/payloads/libpayload/curses/menu/m_global.c
index 73227f3..4509996 100644
--- a/payloads/libpayload/curses/menu/m_global.c
+++ b/payloads/libpayload/curses/menu/m_global.c
@@ -135,7 +135,7 @@
 |   Facility      :  libnmenu
 |   Function      :  static void ResetConnectionInfo(MENU *, ITEM **)
 |
-|   Description   :  Reset all informations in the menu and the items in
+|   Description   :  Reset all information in the menu and the items in
 |                    the item array that indicates a connection
 |
 |   Return Values :  -
diff --git a/payloads/libpayload/curses/menu/m_item_use.c b/payloads/libpayload/curses/menu/m_item_use.c
index 4a25a85..69be633 100644
--- a/payloads/libpayload/curses/menu/m_item_use.c
+++ b/payloads/libpayload/curses/menu/m_item_use.c
@@ -44,7 +44,7 @@
 |   Function      :  int set_item_userptr(ITEM *item, void *userptr)
 |
 |   Description   :  Set the pointer that is reserved in any item to store
-|                    application relevant informations.
+|                    application relevant information.
 |
 |   Return Values :  E_OK               - success
 +--------------------------------------------------------------------------*/
@@ -61,7 +61,7 @@
 |   Function      :  void *item_userptr(const ITEM *item)
 |
 |   Description   :  Return the pointer that is reserved in any item to store
-|                    application relevant informations.
+|                    application relevant information.
 |
 |   Return Values :  Value of the pointer. If no such pointer has been set,
 |                    NULL is returned.
diff --git a/payloads/libpayload/curses/menu/m_userptr.c b/payloads/libpayload/curses/menu/m_userptr.c
index 67d6ecd..14afbf9 100644
--- a/payloads/libpayload/curses/menu/m_userptr.c
+++ b/payloads/libpayload/curses/menu/m_userptr.c
@@ -44,7 +44,7 @@
 |   Function      :  int set_menu_userptr(MENU *menu, void *userptr)
 |
 |   Description   :  Set the pointer that is reserved in any menu to store
-|                    application relevant informations.
+|                    application relevant information.
 |
 |   Return Values :  E_OK         - success
 +--------------------------------------------------------------------------*/
@@ -61,7 +61,7 @@
 |   Function      :  void *menu_userptr(const MENU *menu)
 |
 |   Description   :  Return the pointer that is reserved in any menu to
-|                    store application relevant informations.
+|                    store application relevant information.
 |
 |   Return Values :  Value of the pointer. If no such pointer has been set,
 |                    NULL is returned

-- 
To view, visit https://review.coreboot.org/26595
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I28c79d0262a54b58d353802e0d572e5b8be5fbc5
Gerrit-Change-Number: 26595
Gerrit-PatchSet: 1
Gerrit-Owner: Elyes HAOUAS <ehaouas at noos.fr>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180527/d41aad1f/attachment-0001.html>


More information about the coreboot-gerrit mailing list