diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-08-19 08:44:45 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-08-19 08:44:45 -0700 |
commit | c6aaeeb97c42cbda35497bbfb2bfeb6c9114e693 (patch) | |
tree | 55f1c56e30ab9926f29bd0faebbdabbcccd45aaf | |
parent | 30c6c06eac67c72e967e9babc6e583b0926a602e (diff) | |
download | DotNetOpenAuth-c6aaeeb97c42cbda35497bbfb2bfeb6c9114e693.zip DotNetOpenAuth-c6aaeeb97c42cbda35497bbfb2bfeb6c9114e693.tar.gz DotNetOpenAuth-c6aaeeb97c42cbda35497bbfb2bfeb6c9114e693.tar.bz2 |
Fixed compiler warnings due to bad xml doc comment references.
-rw-r--r-- | src/DotNetOpenAuth/Messaging/MessagingUtilities.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs index 632fd4c..c63ad9f 100644 --- a/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs +++ b/src/DotNetOpenAuth/Messaging/MessagingUtilities.cs @@ -592,10 +592,10 @@ namespace DotNetOpenAuth.Messaging { } /// <summary> - /// Gets the <see cref="HttpDeliveryMethod"/> enum value for a given HTTP verb. + /// Gets the <see cref="HttpDeliveryMethods"/> enum value for a given HTTP verb. /// </summary> /// <param name="httpVerb">The HTTP verb.</param> - /// <returns>A <see cref="HttpDeliveryMethod"/> enum value that is within the <see cref="HttpDeliveryMethod.HttpVerbMask"/>.</returns> + /// <returns>A <see cref="HttpDeliveryMethod"/> enum value that is within the <see cref="HttpDeliveryMethods.HttpVerbMask"/>.</returns> internal static HttpDeliveryMethods GetHttpDeliveryMethod(string httpVerb) { if (httpVerb == "GET") { return HttpDeliveryMethods.GetRequest; |