diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2020-02-07 02:07:42 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-02-10 22:30:07 +0000 |
commit | 8d774c745c28cf49de20d4f495b3d06fc5b9757f (patch) | |
tree | be0cca3b975e8428dfa9153f0f0ccde004c18601 /NetworkPkg/Library | |
parent | 788421d5a766a4ce216e99e2277bb11c54e7d0f6 (diff) | |
download | edk2-8d774c745c28cf49de20d4f495b3d06fc5b9757f.tar.gz |
NetworkPkg: Fix a typo
Correctly write 'malformatted' in documentation, comments and
debug strings.
Cc: Andrew Fish <afish@apple.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Maciej Rabeda <maciej.rabeda@intel.com>
Signed-off-by: Philippe Mathieu-Daude <philmd@redhat.com>
Message-Id: <20200207010831.9046-30-philmd@redhat.com>
Diffstat (limited to 'NetworkPkg/Library')
-rw-r--r-- | NetworkPkg/Library/DxeNetLib/DxeNetLib.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/NetworkPkg/Library/DxeNetLib/DxeNetLib.c b/NetworkPkg/Library/DxeNetLib/DxeNetLib.c index a39c20be3d..4f8a1226da 100644 --- a/NetworkPkg/Library/DxeNetLib/DxeNetLib.c +++ b/NetworkPkg/Library/DxeNetLib/DxeNetLib.c @@ -2983,7 +2983,7 @@ NetLibGetNicHandle ( @param[out] Ip4Address The pointer to the converted IPv4 address.
@retval EFI_SUCCESS Convert to IPv4 address successfully.
- @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip4Address is NULL.
+ @retval EFI_INVALID_PARAMETER The string is malformatted or Ip4Address is NULL.
**/
EFI_STATUS
@@ -3013,7 +3013,7 @@ NetLibAsciiStrToIp4 ( @param[out] Ip6Address The pointer to the converted IPv6 address.
@retval EFI_SUCCESS Convert to IPv6 address successfully.
- @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip6Address is NULL.
+ @retval EFI_INVALID_PARAMETER The string is malformatted or Ip6Address is NULL.
**/
EFI_STATUS
@@ -3042,7 +3042,7 @@ NetLibAsciiStrToIp6 ( @param[out] Ip4Address The pointer to the converted IPv4 address.
@retval EFI_SUCCESS Convert to IPv4 address successfully.
- @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip4Address is NULL.
+ @retval EFI_INVALID_PARAMETER The string is malformatted or Ip4Address is NULL.
**/
EFI_STATUS
@@ -3072,7 +3072,7 @@ NetLibStrToIp4 ( @param[out] Ip6Address The pointer to the converted IPv6 address.
@retval EFI_SUCCESS Convert to IPv6 address successfully.
- @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip6Address is NULL.
+ @retval EFI_INVALID_PARAMETER The string is malformatted or Ip6Address is NULL.
**/
EFI_STATUS
@@ -3103,7 +3103,7 @@ NetLibStrToIp6 ( @param[out] PrefixLength The pointer to the converted prefix length.
@retval EFI_SUCCESS Convert to IPv6 address successfully.
- @retval EFI_INVALID_PARAMETER The string is mal-formated or Ip6Address is NULL.
+ @retval EFI_INVALID_PARAMETER The string is malformatted or Ip6Address is NULL.
**/
EFI_STATUS
|