apps/examples/tcp_ipc_client/Makefile: Fix mistakes in comments

Fix mistakes in comments
This commit is contained in:
simbit18 2023-03-06 15:45:51 +01:00 committed by Xiang Xiao
parent 13315255e5
commit 2792127849

View File

@ -1,5 +1,5 @@
############################################################################ ############################################################################
# apps/examples/CLIENTE/Make.defs # apps/examples/tcp_ipc_client/Makefile
# #
# Licensed to the Apache Software Foundation (ASF) under one or more # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with # contributor license agreements. See the NOTICE file distributed with
@ -20,14 +20,14 @@
include $(APPDIR)/Make.defs include $(APPDIR)/Make.defs
# CLIENT built-in application info # Client tcp built-in application info
PROGNAME = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT_PROGNAME) PROGNAME = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT_PROGNAME)
PRIORITY = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT_PRIORITY) PRIORITY = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT_STACKSIZE) STACKSIZE = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT) MODULE = $(CONFIG_EXAMPLES_TCP_IPC_CLIENT)
# CLIENT Example # Client tcp Example
MAINSRC = tcp_ipc_client_main.c MAINSRC = tcp_ipc_client_main.c