From cf487e242b05cfe2f2ec2dcd0e22fb684274034d Mon Sep 17 00:00:00 2001 From: Jinesi Yelizati Date: Fri, 16 Apr 2021 09:57:51 +0800 Subject: [PATCH] Fix typo in JDWP TypeTag enums Even though TypeTag is not actually used. --- renderdoc/android/jdwp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renderdoc/android/jdwp.h b/renderdoc/android/jdwp.h index 3629ae9e9..e9aa9396a 100644 --- a/renderdoc/android/jdwp.h +++ b/renderdoc/android/jdwp.h @@ -30,7 +30,7 @@ namespace JDWP { // enums and structs defined by the JDWP spec. These are defined in: -// https://docs.oracle.com/javase/7/docs/platform/jpda/jdwp/jdwp-protocol.html#JDWP_Tag +// https://docs.oracle.com/javase/7/docs/platform/jpda/jdwp/jdwp-protocol.html enum class CommandSet : byte { @@ -58,7 +58,7 @@ enum class TypeTag : byte { Class = 1, Interface = 2, - Arrary = 3, + Array = 3, }; enum class Tag : byte