You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/01/04 02:28:22 UTC

[incubator-nuttx] branch master updated: fs/mqueue/Kconfig: Fix typo

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new 5791bbe  fs/mqueue/Kconfig: Fix typo
5791bbe is described below

commit 5791bbe17ea21393bb2defc5ab3d7b4d825bef5f
Author: Nathan Hartman <59...@users.noreply.github.com>
AuthorDate: Sun Jan 3 18:19:35 2021 -0500

    fs/mqueue/Kconfig: Fix typo
    
    fs/mqueue/Kconfig:
    
        * config FS_MQUEUE_MPATH:
          Fix typo in name string (queuee -> queue)
---
 fs/mqueue/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/mqueue/Kconfig b/fs/mqueue/Kconfig
index 6763bc0..3e816d0 100644
--- a/fs/mqueue/Kconfig
+++ b/fs/mqueue/Kconfig
@@ -6,7 +6,7 @@
 if !DISABLE_MQUEUE
 
 config FS_MQUEUE_MPATH
-	string "Path to message queuee"
+	string "Path to message queue"
 	default "/var/mqueue"
 	---help---
 		The path to where POSIX message queues will exist in the VFS namespace.